00001 <?php 00002 /* SVN FILE: $Id: app_helper.php 7904 2008-12-05 16:49:43Z mark_story $ */ 00003 /** 00004 * Short description for file. 00005 * 00006 * This file is application-wide helper file. You can put all 00007 * application-wide helper-related methods here. 00008 * 00009 * PHP versions 4 and 5 00010 * 00011 * CakePHP(tm) : Rapid Development Framework (http://www.cakephp.org) 00012 * Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org) 00013 * 00014 * Licensed under The MIT License 00015 * Redistributions of files must retain the above copyright notice. 00016 * 00017 * @filesource 00018 * @copyright Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org) 00019 * @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project 00020 * @package cake 00021 * @subpackage cake.cake 00022 * @since CakePHP(tm) v 0.2.9 00023 * @version $Revision: 7904 $ 00024 * @modifiedby $LastChangedBy: mark_story $ 00025 * @lastmodified $Date: 2008-12-05 11:49:43 -0500 (Fri, 05 Dec 2008) $ 00026 * @license http://www.opensource.org/licenses/mit-license.php The MIT License 00027 */ 00028 App::import('Core', 'Helper'); 00029 /** 00030 * This is a placeholder class. 00031 * Create the same file in app/app_helper.php 00032 * 00033 * Add your application-wide methods in the class below, your helpers 00034 * will inherit them. 00035 * 00036 * @package cake 00037 * @subpackage cake.cake 00038 */ 00039 class AppHelper extends Helper { 00040 } 00041 ?>
1.4.7