ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
SettingsManager.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24{
25 protected $rep_obj_id;
26
27 public function __construct($rep_obj_id)
28 {
29 $this->rep_obj_id = $rep_obj_id;
30 }
31
32 public function isActivated(): bool
33 {
35 $this->rep_obj_id,
37 '0'
38 );
39 }
40}
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)