AppHelper.php 971 B

12345678910111213141516171819202122232425262728293031323334
  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 5
  9. *
  10. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  11. * Copyright 2005-2012, 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-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  17. * @link http://cakephp.org CakePHP(tm) Project
  18. * @package app.View.Helper
  19. * @since CakePHP(tm) v 0.2.9
  20. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  21. */
  22. App::uses('Helper', 'View');
  23. /**
  24. * Application helper
  25. *
  26. * Add your application-wide methods in the class below, your helpers
  27. * will inherit them.
  28. *
  29. * @package app.View.Helper
  30. */
  31. class AppHelper extends Helper {
  32. }