AppController.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. * PHP 5
  9. *
  10. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  11. * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  12. *
  13. * Licensed under The MIT License
  14. * For full copyright and license information, please see the LICENSE.txt
  15. * Redistributions of files must retain the above copyright notice.
  16. *
  17. * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  18. * @link http://cakephp.org CakePHP(tm) Project
  19. * @package app.Controller
  20. * @since CakePHP(tm) v 0.2.9
  21. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  22. */
  23. App::uses('Controller', 'Controller');
  24. /**
  25. * Application Controller
  26. *
  27. * Add your application-wide methods in the class below, your controllers
  28. * will inherit them.
  29. *
  30. * @package app.Controller
  31. * @link http://book.cakephp.org/2.0/en/controllers.html#the-app-controller
  32. */
  33. class AppController extends Controller {
  34. }