Exemple #1
0
 /**
  * returns Authorizator to be used for authorization, creates one
  * if it's not instantiated yet.
  * @return Authorizator
  * @author kstep
  */
 protected function getAuthorizator()
 {
     if (!$this->_authorizator) {
         $this->_authorizator = Authorizator::create($this->getStorage());
     }
     return $this->_authorizator;
 }
Exemple #2
0
 public function __construct(Storage $store, array $rules = array())
 {
     $this->_rules = $rules;
     parent::__construct($store);
 }
Exemple #3
0
 public function __construct(Storage_Ldap $store)
 {
     parent::__construct($store);
 }