Lines Matching refs:column
26 foreach($columns as $column) {
27 if (!array_key_exists($column, $this->acl)) {
28 throw new \Exception("column: $column not exists in table");
31 if ($this->acl[$column] < $perm) {
32 $this->acl[$column] = $perm;
40 foreach ($columns as $column) {
42 $this->acl[$column] = BEZ_PERMISSION_NONE;
55 public function add_column($column, $perm=BEZ_PERMISSION_NONE) {
56 if (isset($this->acl[$column])) {
57 throw new \Exception('column already exists');
60 $this->acl[$column] = $perm;