1
|
<?php
|
2
|
/* SVN FILE: $Id: app_model.php 4409 2007-02-02 13:20:59Z phpnut $ */
|
3
|
|
4
|
/**
|
5
|
* Application model for Cake.
|
6
|
*
|
7
|
* This file is application-wide model file. You can put all
|
8
|
* application-wide model-related methods here.
|
9
|
*
|
10
|
* PHP versions 4 and 5
|
11
|
*
|
12
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
13
|
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
14
|
* 1785 E. Sahara Avenue, Suite 490-204
|
15
|
* Las Vegas, Nevada 89104
|
16
|
*
|
17
|
* Licensed under The MIT License
|
18
|
* Redistributions of files must retain the above copyright notice.
|
19
|
*
|
20
|
* @filesource
|
21
|
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
22
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
23
|
* @package cake
|
24
|
* @subpackage cake.app
|
25
|
* @since CakePHP(tm) v 0.2.9
|
26
|
* @version $Revision: 4409 $
|
27
|
* @modifiedby $LastChangedBy: phpnut $
|
28
|
* @lastmodified $Date: 2007-02-02 07:20:59 -0600 (Fri, 02 Feb 2007) $
|
29
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
30
|
*/
|
31
|
|
32
|
/**
|
33
|
* Application model for Cake.
|
34
|
*
|
35
|
* Add your application-wide methods in the class below, your models
|
36
|
* will inherit them.
|
37
|
*
|
38
|
* @package cake
|
39
|
* @subpackage cake.app
|
40
|
*/
|
41
|
class AppModel extends Model{
|
42
|
}
|
43
|
?>
|