cakephp2-php8/lib/Cake/Console/Templates/skel/View/Helper/AppHelper.php

27 lines
533 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 16:38:58 +00:00
* PHP 5
*
2009-11-06 06:00:11 +00:00
* @link http://cakephp.org CakePHP(tm) Project
* @package app.View.Helper
* @since CakePHP(tm) v 0.2.9
*/
2011-03-16 03:54:38 +00:00
App::uses('Helper', 'View');
/**
* Application helper
*
* Add your application-wide methods in the class below, your helpers
* will inherit them.
*
* @package app.View.Helper
*/
class AppHelper extends Helper {
}