2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Application model for Cake.
|
|
|
|
*
|
|
|
|
* This file is application-wide model file. You can put all
|
|
|
|
* application-wide model-related methods here.
|
|
|
|
*
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package app.Model
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 0.2.9
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
|
2011-06-13 14:18:59 +00:00
|
|
|
App::uses('Model', 'Model');
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Application model for Cake.
|
|
|
|
*
|
|
|
|
* Add your application-wide methods in the class below, your models
|
|
|
|
* will inherit them.
|
|
|
|
*
|
2011-10-15 18:30:49 +00:00
|
|
|
* @package app.Model
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2008-11-08 02:54:07 +00:00
|
|
|
class AppModel extends Model {
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|