Base for a static organization website

AppModel.php 511B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Application model for Cake.
  4. *
  5. * This file is application-wide model file. You can put all
  6. * application-wide model-related methods here.
  7. *
  8. * @link http://cakephp.org CakePHP(tm) Project
  9. * @package app.Model
  10. * @since CakePHP(tm) v 0.2.9
  11. */
  12. App::uses('Model', 'Model');
  13. /**
  14. * Application model for Cake.
  15. *
  16. * Add your application-wide methods in the class below, your models
  17. * will inherit them.
  18. *
  19. * @package app.Model
  20. */
  21. class AppModel extends Model {
  22. }