2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Static content controller.
|
|
|
|
*
|
|
|
|
* This file will render views from views/pages/
|
|
|
|
*
|
2010-10-03 16:38:58 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2011-05-29 21:31:39 +00:00
|
|
|
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2011-05-29 21:31:39 +00:00
|
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-10-15 18:30:49 +00:00
|
|
|
* @package app.Controller
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 0.2.9
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Static content controller
|
|
|
|
*
|
|
|
|
* Override this controller by placing a copy in controllers directory of an application
|
|
|
|
*
|
2011-10-15 18:30:49 +00:00
|
|
|
* @package app.Controller
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
class PagesController extends AppController {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Controller name
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2010-04-04 06:46:01 +00:00
|
|
|
public $name = 'Pages';
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Default helper
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-04-04 06:46:01 +00:00
|
|
|
public $helpers = array('Html');
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* This controller does not use a model
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-04-04 06:46:01 +00:00
|
|
|
public $uses = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Displays a view
|
|
|
|
*
|
|
|
|
* @param mixed What page to display
|
|
|
|
*/
|
2010-04-04 06:46:01 +00:00
|
|
|
public function display() {
|
2008-05-30 11:40:08 +00:00
|
|
|
$path = func_get_args();
|
|
|
|
|
2008-10-16 23:52:54 +00:00
|
|
|
$count = count($path);
|
|
|
|
if (!$count) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->redirect('/');
|
|
|
|
}
|
2010-04-21 02:18:17 +00:00
|
|
|
$page = $subpage = $title_for_layout = null;
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
if (!empty($path[0])) {
|
|
|
|
$page = $path[0];
|
|
|
|
}
|
|
|
|
if (!empty($path[1])) {
|
|
|
|
$subpage = $path[1];
|
|
|
|
}
|
|
|
|
if (!empty($path[$count - 1])) {
|
2010-04-11 15:17:33 +00:00
|
|
|
$title_for_layout = Inflector::humanize($path[$count - 1]);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2010-04-11 15:17:33 +00:00
|
|
|
$this->set(compact('page', 'subpage', 'title_for_layout'));
|
2009-11-19 22:13:35 +00:00
|
|
|
$this->render(implode('/', $path));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|