ILIAS  trunk Revision v12.0_alpha-16-g3e876e53c80
Settings.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24{
25 public function __construct(
26 protected int $obj_id,
27 protected bool $active,
28 protected string $screen_ids,
29 protected PermissionType $permission,
30 protected string $lang
31 ) {
32 }
33
34 public function getObjId(): int
35 {
36 return $this->obj_id;
37 }
38
39 public function isActive(): bool
40 {
41 return $this->active;
42 }
43
44 public function getScreenIds(): string
45 {
46 return $this->screen_ids;
47 }
48
49 public function getPermission(): PermissionType
50 {
51 return $this->permission;
52 }
53
54 public function getLanguage(): string
55 {
56 return $this->lang;
57 }
58}
__construct(protected int $obj_id, protected bool $active, protected string $screen_ids, protected PermissionType $permission, protected string $lang)
Definition: Settings.php:25