Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/cakephp/acl/src/Model/Table/ArosTable.php
<?php
/**
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 * Copyright (c) Cake Software Foundation, Inc. (http://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. (http://cakefoundation.org)
 * @link          http://cakephp.org CakePHP(tm) Project
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
 */
namespace Acl\Model\Table;

use
Acl\Model\Table\AclNodesTable;
use
Cake\Core\App;

/**
 * Access Request Object
 *
 */
class ArosTable extends AclNodesTable
{

   
/**
     * {@inheritDoc}
     *
     * @param array $config Config
     * @return void
     */
   
public function initialize(array $config)
    {
       
parent::initialize($config);
       
$this->setAlias('Aros');
       
$this->setTable('aros');
       
$this->addBehavior('Tree', ['type' => 'nested']);

       
$this->belongsToMany('Acos', [
           
'through' => App::className('Acl.PermissionsTable', 'Model/Table'),
           
'className' => App::className('Acl.AcosTable', 'Model/Table'),
        ]);
       
$this->hasMany('AroChildren', [
           
'className' => App::className('Acl.ArosTable', 'Model/Table'),
           
'foreignKey' => 'parent_id'
       
]);

       
$this->setEntityClass(App::className('Acl.Aro', 'Model/Entity'));
    }
}