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


PHP Acl::deny方法代码示例

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


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

示例1: createService

 /**
  * Create the form-service
  *
  * @param \Zend\ServiceManager\ServiceLocatorInterface $serviceLocator
  * @return \Zend\Permissions\Acl\Acl
  */
 public function createService(ServiceLocatorInterface $serviceLocator)
 {
     // Configure the locale
     $config = $serviceLocator->get('Configuration');
     $srvConfig = isset($config['acl']) ? $config['acl'] : array();
     $acl = new Acl();
     if (!empty($srvConfig['roles'])) {
         foreach ((array) $srvConfig['roles'] as $role => $parents) {
             $acl->addRole((string) $role, $parents);
         }
     }
     if (!empty($srvConfig['resources'])) {
         foreach ((array) $srvConfig['resources'] as $resource => $parent) {
             $acl->addResource($resource, $parent);
         }
     }
     if (!empty($srvConfig['allow'])) {
         foreach ((array) $srvConfig['allow'] as $allow) {
             $acl->allow($allow['role'], $allow['resource'], $allow['privilege']);
         }
     }
     if (!empty($srvConfig['deny'])) {
         foreach ((array) $srvConfig['deny'] as $deny) {
             $acl->deny($deny['role'], $deny['resource'], $deny['privilege']);
         }
     }
     return $acl;
 }
开发者ID:gridguyz,项目名称:zork,代码行数:34,代码来源:AclServiceFactory.php

示例2: testReturnsFalseIfIdentityFailsAcls

 public function testReturnsFalseIfIdentityFailsAcls()
 {
     $listener = $this->listener;
     $this->authorization->addResource('Foo\\Bar\\Controller::index');
     $this->authorization->deny('guest', 'Foo\\Bar\\Controller::index', 'POST');
     $this->mvcAuthEvent->setResource('Foo\\Bar\\Controller::index');
     $this->mvcAuthEvent->getMvcEvent()->getRequest()->setMethod('POST');
     $this->authentication->setIdentity(new GuestIdentity());
     $this->assertFalse($listener($this->mvcAuthEvent));
 }
开发者ID:zfcampus,项目名称:zf-mvc-auth,代码行数:10,代码来源:DefaultAuthorizationListenerTest.php

示例3: setAcl

 /**
  * Установить acl
  * @param Acl $acl
  * @return Auth
  */
 public function setAcl($acl)
 {
     if ($this->hasIdentity()) {
         $acl->allow('guest', 'autharea', 'signout');
         $acl->deny('guest', 'autharea', array('signin', 'signup'));
     }
     $this->_acl = $acl;
     return $this;
 }
开发者ID:eugenzor,项目名称:zfhrtool,代码行数:14,代码来源:Auth.php


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