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)
|
2012-03-13 02:46:46 +00:00
|
|
|
* Copyright 2005-2012, 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.
|
|
|
|
*
|
2012-03-13 02:46:46 +00:00
|
|
|
* @copyright Copyright 2005-2012, 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
|
|
|
*/
|
2012-07-21 11:34:33 +00:00
|
|
|
App::uses('AppController', 'Controller');
|
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
|
2011-11-13 21:02:59 +00:00
|
|
|
* @link http://book.cakephp.org/2.0/en/controllers/pages-controller.html
|
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
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*
|
2012-05-13 00:43:31 +00:00
|
|
|
* @param string What page to display
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
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('/');
|
|
|
|
}
|
2012-03-03 23:55:07 +00:00
|
|
|
$page = $subpage = $title = 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])) {
|
2012-03-03 23:55:07 +00:00
|
|
|
$title = Inflector::humanize($path[$count - 1]);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2012-03-03 23:55:07 +00:00
|
|
|
$this->set(compact('page', 'subpage'));
|
|
|
|
$this->set('title_for_layout', $title);
|
2009-11-19 22:13:35 +00:00
|
|
|
$this->render(implode('/', $path));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2012-03-03 23:55:07 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|