ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
SettingsManager.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Taxonomy\Settings;
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)