2005-07-04 01:07:14 +00:00
|
|
|
<?php
|
2005-06-30 02:09:47 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// + $Id$
|
|
|
|
// +------------------------------------------------------------------+ //
|
2005-07-04 02:07:21 +00:00
|
|
|
// + Cake PHP : Rapid Development Framework <http://www.cakephp.org/> + //
|
2005-07-04 02:59:39 +00:00
|
|
|
// + Copyright: (c) 2005, CakePHP Authors/Developers + //
|
2005-06-30 02:09:47 +00:00
|
|
|
// +------------------------------------------------------------------+ //
|
|
|
|
// + Licensed under The MIT License + //
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2005-07-04 01:24:13 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @filesource
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.app
|
2005-07-04 02:07:21 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
2005-07-04 01:24:13 +00:00
|
|
|
*/
|
|
|
|
|
2005-06-30 02:09:47 +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.
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.app
|
|
|
|
*/
|
|
|
|
|
|
|
|
class AppController extends Controller {
|
|
|
|
}
|
|
|
|
|
2005-05-22 23:24:09 +00:00
|
|
|
?>
|