Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
<?php
2
/**
3
 * Application level View Helper
4
 *
5
 * This file is application-wide helper file. You can put all
6
 * application-wide helper-related methods here.
7
 *
8
 * @link          http://cakephp.org CakePHP(tm) Project
9
 * @package       app.View.Helper
10
 * @since         CakePHP(tm) v 0.2.9
11
 */
12
 
13
App::uses('Helper', 'View');
14
 
15
/**
16
 * Application helper
17
 *
18
 * Add your application-wide methods in the class below, your helpers
19
 * will inherit them.
20
 *
21
 * @package       app.View.Helper
22
 */
23
class AppHelper extends Helper {
24
}