1: <?php
2: /**
3: *
4: * PHP 5
5: *
6: * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
7: * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
8: *
9: * Licensed under The MIT License
10: * For full copyright and license information, please see the LICENSE.txt
11: * Redistributions of files must retain the above copyright notice.
12: *
13: * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
14: * @link http://cakephp.org CakePHP(tm) Project
15: * @package Cake.Model
16: * @since CakePHP(tm) v 0.2.9
17: * @license http://www.opensource.org/licenses/mit-license.php MIT License
18: */
19:
20: App::uses('AclNode', 'Model');
21:
22: /**
23: * Access Control Object
24: *
25: * @package Cake.Model
26: */
27: class Aco extends AclNode {
28:
29: /**
30: * Model name
31: *
32: * @var string
33: */
34: public $name = 'Aco';
35:
36: /**
37: * Binds to ARO nodes through permissions settings
38: *
39: * @var array
40: */
41: public $hasAndBelongsToMany = array('Aro' => array('with' => 'Permission'));
42: }
43: