00001 <?php 00002 /* SVN FILE: $Id: app_model.php 7847 2008-11-08 02:54:07Z renan.saddam $ */ 00003 00004 /** 00005 * Application model for Cake. 00006 * 00007 * This file is application-wide model file. You can put all 00008 * application-wide model-related methods here. 00009 * 00010 * PHP versions 4 and 5 00011 * 00012 * CakePHP(tm) : Rapid Development Framework (http://www.cakephp.org) 00013 * Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org) 00014 * 00015 * Licensed under The MIT License 00016 * Redistributions of files must retain the above copyright notice. 00017 * 00018 * @filesource 00019 * @copyright Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org) 00020 * @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project 00021 * @package cake 00022 * @subpackage cake.app 00023 * @since CakePHP(tm) v 0.2.9 00024 * @version $Revision: 7847 $ 00025 * @modifiedby $LastChangedBy: renan.saddam $ 00026 * @lastmodified $Date: 2008-11-07 21:54:07 -0500 (Fri, 07 Nov 2008) $ 00027 * @license http://www.opensource.org/licenses/mit-license.php The MIT License 00028 */ 00029 00030 /** 00031 * Application model for Cake. 00032 * 00033 * Add your application-wide methods in the class below, your models 00034 * will inherit them. 00035 * 00036 * @package cake 00037 * @subpackage cake.app 00038 */ 00039 class AppModel extends Model { 00040 } 00041 ?>
1.4.7