~tsep-dev/tsep/0.9-beta

« back to all changes in this revision

Viewing changes to branches/symfony/cake/libs/view/helpers/app_helper.php

  • Committer: geoffreyfishing
  • Date: 2011-01-11 23:46:12 UTC
  • Revision ID: svn-v4:ae0de26e-ed09-4cbe-9a20-e40b4c60ac6c::125
Created a symfony branch for future migration to symfony

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 * PHP versions 4 and 5
 
9
 *
 
10
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 
11
 * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
 
12
 *
 
13
 * Licensed under The MIT License
 
14
 * Redistributions of files must retain the above copyright notice.
 
15
 *
 
16
 * @copyright     Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
 
17
 * @link          http://cakephp.org CakePHP(tm) Project
 
18
 * @package       cake
 
19
 * @subpackage    cake.cake
 
20
 * @since         CakePHP(tm) v 0.2.9
 
21
 * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
 
22
 */
 
23
App::import('View', 'Helper', false);
 
24
 
 
25
/**
 
26
 * This is a placeholder class.
 
27
 * Create the same file in app/app_helper.php
 
28
 *
 
29
 * Add your application-wide methods in the class below, your helpers
 
30
 * will inherit them.
 
31
 *
 
32
 * @package       cake
 
33
 * @subpackage    cake.cake
 
34
 */
 
35
class AppHelper extends Helper {
 
36
}