2005-06-21 23:44:49 +00:00
|
|
|
<?php
|
2005-08-21 06:49:02 +00:00
|
|
|
/* SVN FILE: $Id$ */
|
2005-07-04 01:24:13 +00:00
|
|
|
|
|
|
|
/**
|
2005-08-21 06:49:02 +00:00
|
|
|
* Short description for file.
|
|
|
|
*
|
|
|
|
* This file is application-wide controller file. You can put all
|
|
|
|
* application-wide controller-related methods here.
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
* Copyright (c) 2005, CakePHP Authors/Developers
|
|
|
|
*
|
|
|
|
* Author(s): Michal Tatarynowicz aka Pies <tatarynowicz@gmail.com>
|
|
|
|
* Larry E. Masters aka PhpNut <nut@phpnut.com>
|
|
|
|
* Kamil Dzielinski aka Brego <brego.dk@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2005-07-04 01:24:13 +00:00
|
|
|
*
|
|
|
|
* @filesource
|
2005-08-21 06:49:02 +00:00
|
|
|
* @author CakePHP Authors/Developers
|
|
|
|
* @copyright Copyright (c) 2005, CakePHP Authors/Developers
|
|
|
|
* @link https://trac.cakephp.org/wiki/Authors Authors/Developers
|
|
|
|
* @package cake
|
2005-10-09 01:56:21 +00:00
|
|
|
* @subpackage cake.cake.libs.controller
|
2005-08-21 06:49:02 +00:00
|
|
|
* @since CakePHP v 0.2.9
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
2005-07-04 02:07:21 +00:00
|
|
|
* @lastmodified $Date$
|
2005-08-21 06:49:02 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2005-07-04 01:24:13 +00:00
|
|
|
*/
|
|
|
|
|
2005-08-21 06:49:02 +00:00
|
|
|
|
2005-07-04 01:24:13 +00:00
|
|
|
/**
|
2005-08-21 06:49:02 +00:00
|
|
|
* Short description for class.
|
|
|
|
*
|
2005-07-04 01:24:13 +00:00
|
|
|
* This file is application-wide controller file. You can put all
|
|
|
|
* application-wide controller-related methods here.
|
|
|
|
*
|
|
|
|
* Add your application-wide methods in the class below, your controllers
|
|
|
|
* will inherit them.
|
|
|
|
*
|
2005-08-21 06:49:02 +00:00
|
|
|
* @package cake
|
2005-10-09 01:56:21 +00:00
|
|
|
* @subpackage cake.cake.libs.controller
|
2005-07-04 01:24:13 +00:00
|
|
|
*/
|
2005-10-03 04:48:00 +00:00
|
|
|
class PagesController extends AppController{
|
2005-07-04 01:24:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
* @var unknown_type
|
2005-08-21 06:49:02 +00:00
|
|
|
*/
|
2005-07-10 05:08:19 +00:00
|
|
|
var $helpers = array('html', 'ajax');
|
|
|
|
|
2005-07-04 01:24:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays a view
|
|
|
|
*
|
|
|
|
*/
|
2005-07-10 05:08:19 +00:00
|
|
|
function display()
|
|
|
|
{
|
|
|
|
if (!func_num_args())
|
|
|
|
{
|
|
|
|
$this->redirect('/');
|
|
|
|
}
|
2005-05-22 23:24:09 +00:00
|
|
|
|
2005-07-10 05:08:19 +00:00
|
|
|
$path = func_get_args();
|
|
|
|
|
|
|
|
if (!count($path))
|
|
|
|
{
|
|
|
|
$this->redirect('/');
|
|
|
|
}
|
|
|
|
$this->set('page', $path[0]);
|
|
|
|
$this->set('subpage', empty($path[1])? null: $path[1]);
|
|
|
|
$this->set('title', ucfirst($path[count($path)-1]));
|
|
|
|
$this->render(join('/', $path));
|
|
|
|
}
|
2005-05-22 23:24:09 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|