コード例 #1
0
 public function __construct($filterid, $label, $permission, $gliederungid, $matcher)
 {
     parent::__construct($label, $permission, $gliederungid);
     $this->filterid = $filterid;
     if ($gliederungid != null) {
         $matcher = new AndDokumentMatcher(new GliederungDokumentMatcher($gliederungid), $matcher);
     }
     $this->matcher = $matcher;
 }
コード例 #2
0
 public function __construct($actionid, $label, $permission)
 {
     parent::__construct($label, $permission);
     $this->actionid = $actionid;
 }
コード例 #3
0
ファイル: aktion.class.php プロジェクト: jungepiraten/vpanel
 public function isAllowed($session)
 {
     return parent::isAllowed($session, $this->getGliederungID());
 }