ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjectTranslation2TableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 {
30  private const BASE_CMD = 'Translation';
33 
34  protected int $nr;
35 
36  public function __construct(
37  ?object $parent_obj,
38  string $parent_cmd,
39  readonly protected bool $incl_desc = true,
40  readonly protected string $master_lang = "",
41  readonly protected bool $fallback_mode = false,
42  readonly protected string $fallback_lang = ""
43  ) {
44  global $DIC;
45 
46  $this->access = $DIC->access();
47  $this->lom_services = $DIC->learningObjectMetadata();
48 
49  parent::__construct($parent_obj, $parent_cmd);
50 
51  $this->setLimit(9999);
52 
53  $this->addColumn("", "", "1");
54  $this->addColumn($this->lng->txt("language"));
55  $this->addColumn($this->lng->txt("default"));
56  $this->addColumn($this->lng->txt("title"));
57  if ($incl_desc) {
58  $this->addColumn($this->lng->txt("description"));
59  }
60 
61  $this->setEnableHeader(true);
62  $this->setFormAction($this->ctrl->getFormAction($parent_obj));
63  $this->setRowTemplate("tpl.obj_translation2_row.html", "components/ILIAS/ILIASObject");
64  $this->disable("footer");
65  $this->setEnableTitle(true);
66 
67  $this->nr = 0;
68  }
69 
70  protected function prepareOutput(): void
71  {
72  $this->addMultiCommand("confirmDelete" . self::BASE_CMD . "s", $this->lng->txt("remove"));
73  if ($this->fallback_mode) {
74  $this->addMultiCommand("setFallback", $this->lng->txt("obj_set_fallback_lang"));
75  }
76  if ($this->dataExists()) {
77  $this->addCommandButton("save" . self::BASE_CMD . "s", $this->lng->txt("save"));
78  }
79  }
80 
81  protected function fillRow(array $set): void
82  {
83  $this->nr++;
84 
85  if (!$set["default"] && $set["lang"] != $this->master_lang) {
86  $this->tpl->setCurrentBlock("cb");
87  $this->tpl->setVariable("CB_NR", $this->nr);
88  $this->tpl->parseCurrentBlock();
89  }
90 
91  if ($this->master_lang == "") {
92  $this->tpl->setCurrentBlock("rb");
93  $this->tpl->setVariable("RB_NR", $this->nr);
94  if ($set["default"]) {
95  $this->tpl->setVariable("DEF_CHECKED", "checked=\"checked\"");
96  }
97  $this->tpl->parseCurrentBlock();
98  } elseif ($set["lang"] == $this->master_lang) {
99  $this->tpl->setVariable("MASTER_LANG", $this->lng->txt("obj_master_lang"));
100  }
101  if ($this->master_lang != "" && $set["lang"] == $this->fallback_lang) {
102  $this->tpl->setVariable("FALLBACK_LANG", $this->lng->txt("obj_fallback_lang"));
103  }
104 
105  if ($this->incl_desc) {
106  $this->tpl->setCurrentBlock("desc_row");
107  $this->tpl->setVariable("VAL_DESC", ilLegacyFormElementsUtil::prepareFormOutput($set["desc"]));
108  $this->tpl->setVariable("DNR", $this->nr);
109  $this->tpl->parseCurrentBlock();
110  }
111 
112  $this->tpl->setVariable("NR", $this->nr);
113 
114  // lang selection
115  $languages = [];
116  foreach ($this->lom_services->dataHelper()->getAllLanguages() as $language) {
117  $languages[$language->value()] = $language->presentableLabel();
118  }
119  $this->tpl->setVariable(
120  "LANG_SELECT",
122  $set["lang"],
123  "lang[" . $this->nr . "]",
124  $languages,
125  false,
126  true
127  )
128  );
129 
130 
131  $this->tpl->setVariable("VAL_TITLE", ilLegacyFormElementsUtil::prepareFormOutput($set["title"]));
132  }
133 }
TableGUI class for title/description translations.
setFormAction(string $a_form_action, bool $a_multipart=false)
setEnableTitle(bool $a_enabletitle)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
static formSelect( $selected, string $varname, array $options, bool $multiple=false, bool $direct_text=false, int $size=0, string $style_class="", array $attribs=[], bool $disabled=false)
Builds a select form field with options and shows the selected option first.
static prepareFormOutput($a_str, bool $a_strip=false)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
__construct(?object $parent_obj, string $parent_cmd, readonly protected bool $incl_desc=true, readonly protected string $master_lang="", readonly protected bool $fallback_mode=false, readonly protected string $fallback_lang="")
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)
addMultiCommand(string $a_cmd, string $a_text)
setEnableHeader(bool $a_enableheader)