2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Static content controller.
|
|
|
|
*
|
|
|
|
* This file will render views from views/pages/
|
|
|
|
*
|
2017-06-10 21:33:55 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
2017-06-10 22:10:52 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2008-05-30 11:40:08 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2017-06-10 22:10:52 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2017-06-10 21:33:55 +00:00
|
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Controller
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 0.2.9
|
2013-05-30 22:11:14 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-12-05 15:24:42 +00:00
|
|
|
App::uses('AppController', 'Controller');
|
|
|
|
|
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-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Controller
|
2011-10-15 16:08:49 +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
|
|
|
/**
|
|
|
|
* Default helper
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $helpers = array('Html', 'Session');
|
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 07:14:00 +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
|
2011-07-29 04:06:43 +00:00
|
|
|
* @return void
|
2013-04-21 21:29:36 +00:00
|
|
|
* @throws NotFoundException When the view file could not be found
|
|
|
|
* or MissingViewException in debug mode.
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +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) {
|
2013-08-08 19:07:46 +00:00
|
|
|
return $this->redirect('/');
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2012-03-19 03:25:19 +00:00
|
|
|
$page = $subpage = $titleForLayout = 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-19 03:25:19 +00:00
|
|
|
$titleForLayout = Inflector::humanize($path[$count - 1]);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2012-03-19 03:25:19 +00:00
|
|
|
$this->set(array(
|
|
|
|
'page' => $page,
|
|
|
|
'subpage' => $subpage,
|
|
|
|
'title_for_layout' => $titleForLayout
|
|
|
|
));
|
2013-04-21 21:29:36 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
$this->render(implode('/', $path));
|
|
|
|
} catch (MissingViewException $e) {
|
|
|
|
if (Configure::read('debug')) {
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
throw new NotFoundException();
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2012-03-19 03:25:19 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|