AcoAction.php 1011 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. *
  4. * PHP 5
  5. *
  6. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  7. * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
  8. *
  9. * Licensed under The MIT License
  10. * Redistributions of files must retain the above copyright notice.
  11. *
  12. * @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
  13. * @link http://cakephp.org CakePHP(tm) Project
  14. * @package Cake.Model
  15. * @subpackage cake.cake.libs.model
  16. * @since CakePHP(tm) v 0.2.9
  17. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  18. */
  19. /**
  20. * Load Model and AppModel
  21. */
  22. App::uses('AppModel', 'Model');
  23. /**
  24. * Action for Access Control Object
  25. *
  26. * @package Cake.Model
  27. * @subpackage cake.cake.libs.model
  28. */
  29. class AcoAction extends AppModel {
  30. /**
  31. * Model name
  32. *
  33. * @var string
  34. */
  35. public $name = 'AcoAction';
  36. /**
  37. * ACO Actions belong to ACOs
  38. *
  39. * @var array
  40. */
  41. public $belongsTo = array('Aco');
  42. }