ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilObjectPropertyInfoTabVisibility.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
29 {
30  private const DEFAULT_INFO_TAB_VISIBILITY = true;
31  private const INPUT_LABEL = 'obj_tool_setting_info_tab';
32 
33  public function __construct(
34  private bool $info_tab_visibility = self::DEFAULT_INFO_TAB_VISIBILITY
35  ) {
36  }
37 
38  public function getVisibility(): bool
39  {
40  return $this->info_tab_visibility;
41  }
42 
43  public function toForm(
44  \ilLanguage $language,
45  FieldFactory $field_factory,
47  ): Checkbox {
48  $trafo = $refinery->custom()->transformation(
49  function ($v): ilObjectProperty {
50  return new ilObjectPropertyInfoTabVisibility($v);
51  }
52  );
53 
54  return $field_factory->checkbox($language->txt(self::INPUT_LABEL))
56  ->withValue($this->getVisibility());
57  }
58 }
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
toForm(\ilLanguage $language, FieldFactory $field_factory, Refinery $refinery)
This describes checkbox inputs.
Definition: Checkbox.php:28
__construct(private bool $info_tab_visibility=self::DEFAULT_INFO_TAB_VISIBILITY)