ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMobSubtitleTableGUI.php
Go to the documentation of this file.
1 <?php
2 
25 {
27 
28  public function __construct(
29  object $a_parent_obj,
30  string $a_parent_cmd,
31  ilObjMediaObject $a_mob
32  ) {
33  global $DIC;
34 
35  $this->ctrl = $DIC->ctrl();
36  $this->lng = $DIC->language();
37  $this->access = $DIC->access();
38  $ilCtrl = $DIC->ctrl();
39  $lng = $DIC->language();
40 
41  parent::__construct($a_parent_obj, $a_parent_cmd);
42  $this->setData($a_mob->getSrtFiles());
43  $this->setTitle($lng->txt("mob_subtitle_files"));
44 
45  $this->addColumn("", "", 1);
46  $this->addColumn($this->lng->txt("mob_file"));
47  $this->addColumn($this->lng->txt("mob_language"));
48 
49  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
50  $this->setRowTemplate("tpl.srt_files_row.html", "Services/MediaObjects");
51 
52  $this->addMultiCommand("confirmSrtDeletion", $lng->txt("delete"));
53  }
54 
55  protected function fillRow(array $a_set): void
56  {
57  $lng = $this->lng;
58 
59  $this->tpl->setVariable("FILE_NAME", $a_set["full_path"]);
60  $this->tpl->setVariable("LANGUAGE", $lng->txt("meta_l_" . $a_set["language"]));
61  $this->tpl->setVariable("LANG_KEY", $a_set["language"]);
62  }
63 }
setData(array $a_data)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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...
setFormAction(string $a_form_action, bool $a_multipart=false)
ilLanguage $lng
global $DIC
Definition: feed.php:28
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
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)
addMultiCommand(string $a_cmd, string $a_text)
__construct(object $a_parent_obj, string $a_parent_cmd, ilObjMediaObject $a_mob)