統計
| ブランチ: | リビジョン:

pictcode / lib / Cake / Test / test_app / Model / AppModel.php @ 635eef61

履歴 | 表示 | アノテート | ダウンロード (1.057 KB)

1
<?php
2
/**
3
 * Application model for Cake.
4
 *
5
 * This file is application-wide model file. You can put all
6
 * application-wide model-related methods here.
7
 *
8
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
9
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
10
 *
11
 * Licensed under The MIT License
12
 * For full copyright and license information, please see the LICENSE.txt
13
 * Redistributions of files must retain the above copyright notice.
14
 *
15
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
16
 * @link          http://cakephp.org CakePHP(tm) Project
17
 * @package       Cake.Model
18
 * @since         CakePHP(tm) v 0.2.9
19
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
20
 */
21

    
22
App::uses('Model', 'Model');
23

    
24
/**
25
 * Application model for Cake.
26
 *
27
 * This is a placeholder class.
28
 * Create the same file in app/Model/AppModel.php
29
 * Add your application-wide methods to the class, your models will inherit them.
30
 *
31
 * @package       Cake.Model
32
 */
33
class AppModel extends Model {
34
}