ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
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)