pictcode / lib / Cake / Console / Templates / skel / Controller / AppController.php @ 0b1b8047
履歴 | 表示 | アノテート | ダウンロード (624 Bytes)
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 |
* @link http://cakephp.org CakePHP(tm) Project
|
9 |
* @package app.Controller
|
10 |
* @since CakePHP(tm) v 0.2.9
|
11 |
*/
|
12 |
|
13 |
App::uses('Controller', 'Controller'); |
14 |
|
15 |
/**
|
16 |
* Application Controller
|
17 |
*
|
18 |
* Add your application-wide methods in the class below, your controllers
|
19 |
* will inherit them.
|
20 |
*
|
21 |
* @package app.Controller
|
22 |
* @link http://book.cakephp.org/2.0/en/controllers.html#the-app-controller
|
23 |
*/
|
24 |
class AppController extends Controller { |
25 |
} |