* @author Shohei Nakajima * @link http://www.netcommons.org NetCommons Project * @license http://www.netcommons.org/license.txt NetCommons License * @copyright Copyright 2014, NetCommons Project */ App::uses('AppController', 'Controller'); /** * PluginManager App Controller * * @author Shohei Nakajima * @package NetCommons\PluginManager\Controller */ class PluginManagerAppController extends AppController { /** * use model * * @var array */ public $uses = array( 'PluginManager.Plugin' ); /** * use component * * @var array */ public $components = array( 'ControlPanel.ControlPanelLayout', //アクセスの権限 'NetCommons.Permission' => array( 'type' => PermissionComponent::CHECK_TYPE_SYSTEM_PLUGIN, 'allow' => array() ), 'Security', ); }