09.26
php
saved
PhpNut
Note
PhpNut did not leave a note
PhpNut did not leave a note
- <?php
- /**
- * Add your application-wide methods in the class below, your helpers
- * will inherit them.
- */
- class AppHelper extends Helper {
- /**
- * You can use this to override the core tags that
- * are used in the FormHelper. Passing a param with the
- * name of the file you want to load, only tags you define
- * will be merged into the tag used in the FormHelper
- */
- function __construct() {
- parent::__construct();
- /**
- * without a param will load app/config/tags.php to override the core
- * only tags you define will
- */
- $this->loadConfig();
- /**
- * with param will add tags from app/config/mytags.php to override the core
- */
- $this->loadConfig('mytags');
- }
- }
- ?>
Parsed in 0.018 seconds, using GeSHi 1.0.7.14