2005-07-04 01:07:14 +00:00
|
|
|
<?php
|
2005-08-21 06:49:02 +00:00
|
|
|
/* SVN FILE: $Id$ */
|
2005-07-04 01:24:13 +00:00
|
|
|
/**
|
2005-10-18 22:27:39 +00:00
|
|
|
* Application model for Cake.
|
2006-02-25 19:20:18 +00:00
|
|
|
*
|
|
|
|
* This file is application-wide model file. You can put all
|
2005-08-21 06:49:02 +00:00
|
|
|
* application-wide model-related methods here.
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
2006-05-26 05:29:17 +00:00
|
|
|
* Copyright (c) 2006, Cake Software Foundation, Inc.
|
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
2005-12-23 21:57:26 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2005-07-04 01:24:13 +00:00
|
|
|
*
|
2006-02-25 19:20:18 +00:00
|
|
|
* @filesource
|
2006-05-26 05:29:17 +00:00
|
|
|
* @copyright Copyright (c) 2006, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake
|
|
|
|
* @since CakePHP v 0.2.9
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2005-07-04 01:24:13 +00:00
|
|
|
*/
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2005-10-18 22:27:39 +00:00
|
|
|
* Application model for Cake.
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* This is a placeholder class.
|
|
|
|
* Create the same file in app/app_model.php
|
|
|
|
* Add your application-wide methods to the class, your models will inherit them.
|
2006-02-25 19:20:18 +00:00
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake
|
2005-06-30 02:09:47 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
class AppModel extends Model{
|
2005-06-30 02:09:47 +00:00
|
|
|
}
|
2005-05-22 23:24:09 +00:00
|
|
|
?>
|