當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Current::allowSystemPlugin方法代碼示例

本文整理匯總了PHP中Current::allowSystemPlugin方法的典型用法代碼示例。如果您正苦於以下問題:PHP Current::allowSystemPlugin方法的具體用法?PHP Current::allowSystemPlugin怎麽用?PHP Current::allowSystemPlugin使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Current的用法示例。


在下文中一共展示了Current::allowSystemPlugin方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: view

 /**
  * view method
  *
  * @return void
  */
 public function view()
 {
     if (!$this->__prepare()) {
         return;
     }
     //レイアウトの設定
     if ($this->request->is('ajax')) {
         $this->viewClass = 'View';
         $this->layout = 'NetCommons.modal';
     } elseif (Current::isControlPanel()) {
         $this->ControlPanelLayout = $this->Components->load('ControlPanel.ControlPanelLayout');
     } else {
         $this->PageLayout = $this->Components->load('Pages.PageLayout');
     }
     if (!Hash::get($this->request->query, 'tab')) {
         $this->request->query = Hash::insert($this->request->query, 'tab', 'user-infomation');
     }
     //自分自身の場合、ルーム・グループデータ取得する
     if (Hash::get($this->viewVars['user'], 'User.id') === Current::read('User.id')) {
         //ルームデータ取得
         $this->Rooms->setReadableRooms(Hash::get($this->viewVars['user'], 'User.id'));
         // グループデータ取得・設定
         $this->Groups->setGroupList($this);
     } else {
         if (Current::allowSystemPlugin('rooms')) {
             //ルームデータ取得
             $this->Rooms->setReadableRooms(Hash::get($this->viewVars['user'], 'User.id'));
         }
     }
 }
開發者ID:akagane99,項目名稱:Users,代碼行數:35,代碼來源:UsersController.php

示例2: __setInvalidates

 /**
  * invalidatesのセット
  *
  * @param Model $model ビヘイビア呼び出し元モデル
  * @param array $userAttribute UserAttributeデータ
  * @param array $userAttributesRoles UserAttributesRoleデータ
  * @return void
  * @throws BadRequestException
  */
 private function __setInvalidates(Model $model, $userAttribute, $userAttributesRoles)
 {
     $userAttributeKey = $userAttribute['UserAttribute']['key'];
     if ($model->UsersLanguage->hasField($userAttributeKey)) {
         $modelName = $model->UsersLanguage->alias;
     } else {
         $modelName = $model->alias;
     }
     $userAttributesRole = Hash::extract($userAttributesRoles, '{n}.UserAttributesRole[user_attribute_key=' . $userAttributeKey . ']');
     $userAttributesRole = $userAttributesRole[0];
     //他人でother_editable=falseの場合、自分でself_editable=falseは、不正エラー
     $userId = Hash::get($model->data[$model->alias], 'id');
     if ($userId !== Current::read('User.id') && !$userAttributesRole['other_editable'] || $userId === Current::read('User.id') && !$userAttributesRole['self_editable']) {
         throw new BadRequestException(__d('net_commons', 'Bad Request'));
     }
     //管理者しか許可しない項目のチェック⇒不正エラーとする
     if ($userAttribute['UserAttributeSetting']['only_administrator_editable'] && !Current::allowSystemPlugin('user_manager') && isset($model->data[$modelName][$userAttributeKey])) {
         throw new BadRequestException(__d('net_commons', 'Bad Request'));
     }
 }
開發者ID:akagane99,項目名稱:Users,代碼行數:29,代碼來源:SaveUserBehavior.php


注:本文中的Current::allowSystemPlugin方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。