source: Dev/branches/cakephp/cake/libs/controller/app_controller.php @ 127

Last change on this file since 127 was 126, checked in by fpvanagthoven, 14 years ago

Cakephp branch.

File size: 1.1 KB
Line 
1<?php
2/**
3 * Application level Controller
4 *
5 * This file is application-wide controller file. You can put all
6 * application-wide controller-related methods here.
7 *
8 * PHP versions 4 and 5
9 *
10 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
11 * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
12 *
13 * Licensed under The MIT License
14 * Redistributions of files must retain the above copyright notice.
15 *
16 * @copyright     Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
17 * @link          http://cakephp.org CakePHP(tm) Project
18 * @package       cake
19 * @subpackage    cake.cake.libs.controller
20 * @since         CakePHP(tm) v 0.2.9
21 * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
22 */
23
24/**
25 * This is a placeholder class.
26 * Create the same file in app/app_controller.php
27 *
28 * Add your application-wide methods in the class below, your controllers
29 * will inherit them.
30 *
31 * @package       cake
32 * @subpackage    cake.cake.libs.controller
33 * @link http://book.cakephp.org/view/957/The-App-Controller
34 */
35class AppController extends Controller {
36}
Note: See TracBrowser for help on using the repository browser.