cakephp2-php8/lib/Cake/Model/Aco.php

40 lines
982 B
PHP
Raw Normal View History

<?php
/**
2017-06-10 21:33:55 +00:00
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
2017-06-10 21:33:55 +00:00
* @link https://cakephp.org CakePHP(tm) Project
* @package Cake.Model
* @since CakePHP(tm) v 0.2.9
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
App::uses('AclNode', 'Model');
/**
* Access Control Object
*
* @package Cake.Model
*/
class Aco extends AclNode {
/**
* Model name
*
* @var string
*/
public $name = 'Aco';
/**
* Binds to ARO nodes through permissions settings
*
* @var array
*/
public $hasAndBelongsToMany = array('Aro' => array('with' => 'Permission'));
2012-12-05 14:00:24 +00:00
}