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: * PHP 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.Model
19: * @since CakePHP(tm) v 0.2.9
20: * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
21: */
22:
23: App::uses('Model', 'Model');
24:
25: /**
26: * Application model for Cake.
27: *
28: * This is a placeholder class.
29: * Create the same file in app/Model/AppModel.php
30: * Add your application-wide methods to the class, your models will inherit them.
31: *
32: * @package Cake.Model
33: */
34: class AppModel extends Model {
35: }
36: