当前位置: 首页>>代码示例>>PHP>>正文


PHP User::can方法代码示例

本文整理汇总了PHP中yii\web\User::can方法的典型用法代码示例。如果您正苦于以下问题:PHP User::can方法的具体用法?PHP User::can怎么用?PHP User::can使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在yii\web\User的用法示例。


在下文中一共展示了User::can方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: canShowMenuItem

 /**
  * Проверка на возможность отображать элемент меню.
  *
  * @param array $item
  * @return bool
  */
 private function canShowMenuItem($item)
 {
     if (!isset($item['roles'])) {
         return true;
     }
     foreach ($item['roles'] as $role) {
         if ($this->user->can($role)) {
             return true;
         }
     }
     return false;
 }
开发者ID:vlamug,项目名称:landing-page-crm,代码行数:18,代码来源:MainMenuWidget.php

示例2: run

 /**
  * @return string
  */
 public function run()
 {
     $li = [];
     /**
      * @var string $categoryName
      * @var array $modules
      */
     foreach ($this->itemsList as $categoryName => $modules) {
         $li[] = Html::tag('li', $categoryName, ['class' => 'header']);
         $hasAnyItem = false;
         /** @var Module $module */
         foreach ($modules as $module) {
             $modulePermissionName = sprintf('access%s', ucfirst($module->name));
             if ($this->user->can($modulePermissionName) == false) {
                 continue;
             }
             $hasAnyItem = true;
             if ($controllers = $module->getAdminControllers()) {
                 $isActive = $this->moduleName == $module->name;
                 $aContent = [];
                 if (count($controllers) > 1) {
                     $aContent[] = Html::tag('i', '', ['class' => sprintf('fa fa-%s', $module->icon)]);
                     $aContent[] = Html::tag('span', $module->long_name);
                     $aContent[] = Html::tag('i', '', ['class' => 'fa fa-angle-left pull-right']);
                     $a = Html::tag('a', join("\n", $aContent), ['href' => '#']);
                     $optionsMain = $isActive ? ['class' => 'treeview active'] : ['class' => 'treeview'];
                     $li_2 = [];
                     foreach ($controllers as $controller) {
                         $isActive = $this->moduleName == $module->name && $this->controllerName == $controller;
                         $icon = Html::tag('i', '', ['class' => 'fa fa-circle-o']);
                         $aContent2 = sprintf('%s `%s.%s`', $icon, $module->name, $controller);
                         $a2 = Html::tag('a', $aContent2, ['href' => sprintf('/admin/%s/%s', $module->name, $controller)]);
                         $options = $isActive ? ['class' => 'active'] : [];
                         $li_2[] = Html::tag('li', $a2, $options);
                     }
                     $ul_2 = Html::ul($li_2, ['class' => 'treeview-menu', 'encode' => false]);
                     $li[] = Html::tag('li', $a . "\n" . $ul_2, $optionsMain);
                 } else {
                     $aContent[] = Html::tag('i', '', ['class' => sprintf('fa fa-%s', $module->icon)]);
                     $aContent[] = Html::tag('span', $module->long_name);
                     $a = Html::tag('a', join("\n", $aContent), ['href' => sprintf('/admin/%s', $module->name)]);
                     $options = $isActive ? ['class' => 'active'] : [];
                     $li[] = Html::tag('li', $a, $options);
                 }
             }
         }
         if ($hasAnyItem == false) {
             array_pop($li);
         }
     }
     return Html::ul($li, ['class' => $this->defaultClassName, 'encode' => false]);
 }
开发者ID:pbabilas,项目名称:bcode,代码行数:55,代码来源:Menu.php

示例3: matchActionAccess

 /**
  * check the permission, if we rewrite and controller, the controller id and module id is not changed
  * @param \yii\base\Action $action
  * @param \yii\web\User $user
  * @param \yii\web\Request $request
  * @return bool
  */
 public function matchActionAccess($action, $user, $request)
 {
     if ($user->getIsGuest()) {
         return false;
     }
     /** @var \core\auth\Module $authModule */
     $authModule = \Yii::$app->getModule('core_auth');
     foreach ($authModule->getAdmins() as $key => $admin) {
         if ($user->getIdentity()->username == $admin['username']) {
             return true;
         }
     }
     if ($action->controller->module instanceof Application) {
         $key = 'default' . '_' . $action->controller->id . '_' . $action->id;
     } else {
         $key = $action->getUniqueId();
         $key = explode('/', $key);
         array_shift($key);
         $key = implode('_', $key);
     }
     $key = lcfirst(implode('', array_map(function ($k) {
         return ucfirst($k);
     }, explode('-', $key))));
     return $user->can($key, $this->params);
 }
开发者ID:yinheark,项目名称:yincart2,代码行数:32,代码来源:ActionAccessRule.php

示例4: can

 /**
  * Checks if the user can perform the operation as specified by the given permission.
  *
  * Note that you must configure "authManager" application component in order to use this method.
  * Otherwise an exception will be thrown.
  *
  * @param string $permissionName the name of the permission (e.g. "edit post") that needs access check.
  * @param array $params name-value pairs that would be passed to the rules associated
  * with the roles and permissions assigned to the user. A param with name 'user' is added to
  * this array, which holds the value of [[id]].
  * @param boolean $allowCaching whether to allow caching the result of access check.
  * When this parameter is true (default), if the access check of an operation was performed
  * before, its result will be directly returned when calling this method to check the same
  * operation. If this parameter is false, this method will always call
  * [[\yii\rbac\ManagerInterface::checkAccess()]] to obtain the up-to-date access result. Note that this
  * caching is effective only within the same request and only works when `$params = []`.
  * @return boolean whether the user can perform the operation as specified by the given permission.
  * @SuppressWarnings(PHPMD.BooleanArgumentFlag)
  */
 public function can($permissionName, $params = [], $allowCaching = true)
 {
     if (!$this->getIsGuest() && $this->getIdentity()->isSuperUser()) {
         return true;
     }
     return parent::can($permissionName, $params, $allowCaching);
 }
开发者ID:rkit,项目名称:bootstrap-yii2,代码行数:26,代码来源:User.php

示例5: can

 /**
  * @inheritdoc
  */
 public function can($permissionName, $params = [], $allowCaching = true)
 {
     // Always return true when SuperAdmin user
     if ($this->getIsSuperAdmin()) {
         return true;
     }
     return parent::can($permissionName, $params, $allowCaching);
 }
开发者ID:gromver,项目名称:yii2-platform,代码行数:11,代码来源:User.php

示例6: checkAccess

 public function checkAccess($operation, $params = [], $allowCaching = true)
 {
     // Always return true when SuperAdmin user
     if ($this->getIsSuperAdmin()) {
         return true;
     }
     return parent::can($operation, $params, $allowCaching);
 }
开发者ID:yanglaw,项目名称:yii2-auth,代码行数:8,代码来源:User.php

示例7: can

 /**
  * 
  * 管理員就全給過
  * @param type $permissionName
  * @param type $params
  * @param type $allowCaching
  * @return boolean
  */
 public function can($permissionName, $params = [], $allowCaching = true)
 {
     //直接給所有權限
     if ($this->identity->role == 1) {
         return true;
     }
     return parent::can($permissionName, $params, $allowCaching);
 }
开发者ID:rockielin,项目名称:yii2-app-advanced-template,代码行数:16,代码来源:User.php

示例8: can

 public function can($permissionName, $params = [], $allowCaching = true)
 {
     if (!Yii::$app->user->isGuest) {
         if ($this->isSuperuser()) {
             return true;
         }
     }
     return parent::can($permissionName, $params = [], $allowCaching = true);
 }
开发者ID:ahb360,项目名称:cms,代码行数:9,代码来源:User.php

示例9: can

 /**
  * Check if user can do $permissionName
  *
  * @param string $permissionName
  * @param array  $params
  * @param bool   $allowCaching
  * @return bool
  */
 public function can($permissionName, $params = [], $allowCaching = true)
 {
     // check if we have an authmanager. if so, call the parent functionality
     $auth = Yii::$app->getAuthManager();
     if ($auth) {
         return parent::can($permissionName, $params, $allowCaching);
     }
     // otherwise use our own custom permission via roles table
     $user = $this->getIdentity();
     return $user ? $user->can($permissionName) : false;
 }
开发者ID:filsh,项目名称:yii2-user,代码行数:19,代码来源:User.php

示例10: can

 /**
  * Performs access check for this user.
  * @param string $operation the name of the operation that need access check.
  * @param array $params name-value pairs that would be passed to business rules associated
  * with the tasks and roles assigned to the user. A param with name 'userId' is added to
  * this array, which holds the value of [[id]] when [[DbAuthManager]] or
  * [[PhpAuthManager]] is used.
  * @param boolean $allowCaching whether to allow caching the result of access check.
  * When this parameter is true (default), if the access check of an operation was performed
  * before, its result will be directly returned when calling this method to check the same
  * operation. If this parameter is false, this method will always call
  * [[AuthManager::can()]] to obtain the up-to-date access result. Note that this
  * caching is effective only within the same request and only works when `$params = []`.
  * @return boolean whether the operations can be performed by this user.
  */
 public function can($operation, $params = [], $allowCaching = true)
 {
     //Check superadmin
     if (!$this->isGuest) {
         $module = Yii::$app->getModule('user');
         if (in_array($this->identity->username, $module->superUsers)) {
             return true;
         }
     }
     return parent::can($operation, $params, $allowCaching);
 }
开发者ID:maddoger,项目名称:yii2-user,代码行数:26,代码来源:WebUser.php

示例11: can

 /**
  * Check if user can do $permissionName.
  * If "authManager" component is set, this will simply use the default functionality.
  * Otherwise, it will use our custom permission system
  * @param string $permissionName
  * @param array $params
  * @param bool $allowCaching
  * @return bool
  */
 public function can($permissionName, $params = [], $allowCaching = true)
 {
     // check for auth manager to call parent
     $auth = Yii::$app->getAuthManager();
     if ($auth) {
         return parent::can($permissionName, $params, $allowCaching);
     }
     // otherwise use our own custom permission (via the role table)
     /** @var \amnah\yii2\user\models\User $user */
     $user = $this->getIdentity();
     return $user ? $user->can($permissionName) : false;
 }
开发者ID:amnah,项目名称:yii2-user,代码行数:21,代码来源:User.php

示例12: checkAccessRoute

 /**
  * Checks route permissions.
  *
  * Splits `permissionName` by underscore and match parts against more global rule
  * eg. a permission `app_site` will match, `app_site_foo`
  *
  * @param $permissionName
  * @param $params
  * @param $allowCaching
  *
  * @return bool
  */
 private function checkAccessRoute($permissionName, $params, $allowCaching)
 {
     $route = explode('_', $permissionName);
     $routePermission = '';
     foreach ($route as $part) {
         $routePermission .= $part;
         if (\Yii::$app->user->id) {
             $canRoute = parent::can($routePermission, $params, $allowCaching);
         } else {
             $canRoute = $this->canGuest($routePermission, $params, $allowCaching);
         }
         if ($canRoute) {
             return true;
         }
         $routePermission .= '_';
     }
     return false;
 }
开发者ID:phundament,项目名称:app,代码行数:30,代码来源:User.php

示例13: matchActionAccess

 /**
  * check the permission, if we rewrite and controller, the controller id and module id is not changed
  * @param \yii\base\Action $action
  * @param \yii\web\User $user
  * @param \yii\web\Request $request
  * @return bool
  */
 public function matchActionAccess($action, $user, $request)
 {
     if ($this->isAdmin()) {
         return true;
     }
     if ($action->controller instanceof Controller) {
         $key = get_class($action->controller) . '_' . $action->id;
         $keys = explode('-', $key);
         $keys = array_map(function ($v) {
             return ucfirst($v);
         }, $keys);
         $key = implode($keys);
         if (\Yii::$app->authManager->getPermission($key)) {
             return $user->can($key, $this->params);
         } else {
             return true;
         }
     }
 }
开发者ID:shuangjie,项目名称:galaxy,代码行数:26,代码来源:AccessRule.php

示例14: checkAccess

 /**
  * @param array $row
  * @param SecureActiveQueryInterface $query
  * @param User $user
  * @return User
  * @throws \LogicException
  * @SuppressWarnings(PHPMD.ElseExpression)
  */
 protected function checkAccess(array $row, SecureActiveQueryInterface $query, User $user)
 {
     $identifier = ($identity = $user->getIdentity()) ? $identity->username : 0;
     Yii::trace("Checking access to row data for user '{$identifier}'" . PHP_EOL . VarDumper::dumpAsString($row), __METHOD__);
     $secureItemField = $query->getSecureItemAttribute();
     if (!isset($row[$secureItemField])) {
         throw new \LogicException("Row from database should contain secure item field '{$secureItemField}'");
     }
     $permission = $row[$secureItemField];
     if (!is_null($identity) && $identity->isAdmin) {
         $result = true;
     } else {
         $result = $user->can($permission);
     }
     Yii::getLogger()->log(($result ? 'Access granted' : 'Access denied') . " for user '{$identifier}' (" . $permission . ')', $result ? Logger::LEVEL_INFO : Logger::LEVEL_WARNING, __METHOD__);
     return $result;
 }
开发者ID:yii2-tools,项目名称:yii2-secure-ar,代码行数:25,代码来源:SecureFilterBehavior.php

示例15: can

 public function can($permissionName, $params = [], $allowCaching = true)
 {
     return $this->getIsAdmin() ? true : parent::can($permissionName, $params, $allowCaching);
 }
开发者ID:simple-yii2,项目名称:user,代码行数:4,代码来源:User.php


注:本文中的yii\web\User::can方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。