cakephp2-php8/cake/console/templates/skel/app_helper.php

35 lines
1,015 B
PHP
Raw Normal View History

<?php
/**
* Application level View Helper
*
* This file is application-wide helper file. You can put all
* application-wide helper-related methods here.
*
2010-10-03 12:38:58 -04:00
* PHP 5
*
2009-11-06 17:46:59 +11:00
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
2010-01-26 14:18:20 -05:00
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
2010-01-26 14:18:20 -05:00
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
2009-11-06 17:00:11 +11:00
* @link http://cakephp.org CakePHP(tm) Project
* @package cake
* @since CakePHP(tm) v 0.2.9
2009-11-06 17:51:51 +11:00
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
2009-07-30 15:01:22 -07:00
App::import('Helper', 'Helper', false);
/**
* This is a placeholder class.
* Create the same file in app/app_helper.php
*
* Add your application-wide methods in the class below, your helpers
* will inherit them.
*
* @package cake
*/
class AppHelper extends Helper {
}