2005-07-04 01:07:14 +00:00
|
|
|
<?php
|
2005-06-30 02:09:47 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// + $Id$
|
|
|
|
// +------------------------------------------------------------------+ //
|
2005-07-04 01:07:14 +00:00
|
|
|
// + CakePHP : Rapid Development Framework <http://www.cakephp.org/> + //
|
2005-06-30 02:09:47 +00:00
|
|
|
// + Copyright: (c) 2005, Cake Authors/Developers + //
|
|
|
|
// +------------------------------------------------------------------+ //
|
|
|
|
// + Licensed under The MIT License + //
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2005-07-04 01:24:13 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @filesource
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.app
|
|
|
|
* @version $Revision:$
|
|
|
|
* @modifiedby $LastChangedBy:$
|
|
|
|
* @lastmodified $Date:$
|
|
|
|
*/
|
|
|
|
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
|
|
|
* This file is application-wide model file. You can put all
|
|
|
|
* application-wide model-related methods here.
|
|
|
|
*
|
|
|
|
* Add your application-wide methods in the class below, your models
|
|
|
|
* will inherit them.
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.app
|
|
|
|
*/
|
|
|
|
|
|
|
|
class AppModel extends Model {
|
|
|
|
}
|
|
|
|
|
2005-05-22 23:24:09 +00:00
|
|
|
?>
|