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.
|
2005-12-27 03:33:44 +00:00
|
|
|
*
|
|
|
|
* This file is application-wide controller file. You can put all
|
2005-08-21 06:49:02 +00:00
|
|
|
* application-wide controller-related methods here.
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
2005-12-27 03:33:44 +00:00
|
|
|
* Copyright (c) 2005, Cake Software Foundation, Inc.
|
2005-12-23 21:57:26 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
2005-12-23 21:57:26 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2005-07-04 01:24:13 +00:00
|
|
|
*
|
2005-12-27 03:33:44 +00:00
|
|
|
* @filesource
|
2005-12-23 21:57:26 +00:00
|
|
|
* @copyright Copyright (c) 2005, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
2005-08-21 06:49:02 +00:00
|
|
|
* @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-12-27 03:33:44 +00:00
|
|
|
* This file is application-wide controller file. You can put all
|
2005-07-04 01:24:13 +00:00
|
|
|
* application-wide controller-related methods here.
|
|
|
|
*
|
2005-12-27 03:33:44 +00:00
|
|
|
* Add your application-wide methods in the class below, your controllers
|
2005-07-04 01:24:13 +00:00
|
|
|
* will inherit them.
|
2005-12-27 03:33:44 +00:00
|
|
|
*
|
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-12-27 03:33:44 +00:00
|
|
|
|
2005-07-04 01:24:13 +00:00
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
* @var unknown_type
|
2005-08-21 06:49:02 +00:00
|
|
|
*/
|
2005-12-27 03:33:44 +00:00
|
|
|
var $helpers = array('Html');
|
|
|
|
|
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();
|
2005-12-27 03:33:44 +00:00
|
|
|
|
2005-07-10 05:08:19 +00:00
|
|
|
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
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|