Base for a static organization website

AppController.php 748B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Application level Controller
  4. *
  5. * This file is application-wide controller file. You can put all
  6. * application-wide controller-related methods here.
  7. *
  8. * @link http://cakephp.org CakePHP(tm) Project
  9. * @package app.Controller
  10. * @since CakePHP(tm) v 0.2.9
  11. */
  12. App::uses('Controller', 'Controller');
  13. /**
  14. * Application Controller
  15. *
  16. * Add your application-wide methods in the class below, your controllers
  17. * will inherit them.
  18. *
  19. * @package app.Controller
  20. * @link http://book.cakephp.org/2.0/en/controllers.html#the-app-controller
  21. */
  22. class AppController extends Controller {
  23. public $helpers = array(
  24. 'Html' => array('className' => 'HtmlExt'),
  25. 'Text' => array('className' => 'TextExtended')
  26. );
  27. }