Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
Permission.php
Go to the documentation of this file.
1<?php
3
13
19 protected $level;
20
21 public function __construct(?string $name = null, int $level = 0) {
22 parent::__construct($name);
23 $this->level = $level;
24 }
25
30 public function getLevel() {
31 return $this->level;
32 }
33
38 public function setLevel(int $level) {
39 $this->level = $level;
40 }
41}
42
Ubiquity\security\acl\models$AbastractAclElement This class is part of Ubiquity.
$name
@id @column("name"=>"name","nullable"=>false,"dbType"=>"varchar(100)")
Ubiquity\security\acl\models$Permission This class is part of Ubiquity.
__construct(?string $name=null, int $level=0)