ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilStyleColorTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 {
34 
35  public function __construct(
36  object $a_parent_obj,
37  string $a_parent_cmd,
38  ilObjStyleSheet $a_style_obj,
39  Content\Access\StyleAccessManager $access_manager
40  ) {
41  global $DIC;
42 
43  $this->ctrl = $DIC->ctrl();
44  $this->lng = $DIC->language();
45  $this->access = $DIC->access();
46  $this->rbacsystem = $DIC->rbac()->system();
47  $ilCtrl = $DIC->ctrl();
48  $lng = $DIC->language();
49  $this->access_manager = $access_manager;
50 
51  parent::__construct($a_parent_obj, $a_parent_cmd);
52 
53  $this->setTitle($lng->txt("sty_colors"));
54  $this->setDescription($lng->txt("sty_color_info"));
55  $this->style_obj = $a_style_obj;
56 
57  $this->addColumn("", "", "1"); // checkbox
58  $this->addColumn($this->lng->txt("sty_color_name"));
59  $this->addColumn($this->lng->txt("sty_color_code"));
60  $this->addColumn($this->lng->txt("sty_color"));
61  $this->addColumn($this->lng->txt("sty_color_flavors"));
62  $this->addColumn($this->lng->txt("sty_commands"), "", "1");
63  $this->setEnableHeader(true);
64  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
65  $this->setRowTemplate("tpl.style_color_row.html", "components/ILIAS/Style/Content");
66  //$this->setSelectAllCheckbox("file");
67  $this->getItems();
68 
69  // action commands
70  if ($this->access_manager->checkWrite()) {
71  $this->addMultiCommand("deleteColorConfirmation", $lng->txt("delete"));
72  }
73 
74  $this->setEnableTitle(true);
75  }
76 
77  public function getItems(): void
78  {
79  $this->setData($this->style_obj->getColors());
80  }
81 
82  protected function fillRow(array $a_set): void
83  {
84  $lng = $this->lng;
85  $ilCtrl = $this->ctrl;
86 
87  for ($i = -80; $i <= 80; $i += 20) {
88  $this->tpl->setCurrentBlock("flavor");
89  $this->tpl->setVariable("FLAVOR_NAME", "(" . $i . ")");
90  $this->tpl->setVariable(
91  "FLAVOR_CODE",
92  ilObjStyleSheet::_getColorFlavor($a_set["code"], $i)
93  );
94  $this->tpl->parseCurrentBlock();
95  }
96 
97  $this->tpl->setVariable("COLOR_NAME_ENC", ilLegacyFormElementsUtil::prepareFormOutput($a_set["name"]));
98  $this->tpl->setVariable("COLOR_NAME", $a_set["name"]);
99  $this->tpl->setVariable("COLOR_CODE", $a_set["code"]);
100 
101  if ($this->access_manager->checkWrite()) {
102  $this->tpl->setVariable("TXT_EDIT", $lng->txt("edit"));
103  $ilCtrl->setParameter($this->parent_obj, "c_name", rawurlencode($a_set["name"]));
104  $this->tpl->setVariable(
105  "LINK_EDIT_COLOR",
106  $ilCtrl->getLinkTarget($this->parent_obj, "editColor")
107  );
108  }
109  }
110 }
setData(array $a_data)
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)
setEnableTitle(bool $a_enabletitle)
Content Access StyleAccessManager $access_manager
setDescription(string $a_val)
static prepareFormOutput($a_str, bool $a_strip=false)
ilLanguage $lng
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
__construct(object $a_parent_obj, string $a_parent_cmd, ilObjStyleSheet $a_style_obj, Content\Access\StyleAccessManager $access_manager)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
static _getColorFlavor(string $a_rgb, int $a_i)
Get color flavor.
__construct(Container $dic, ilPlugin $plugin)
Manages access to content style editing.
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)
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
addMultiCommand(string $a_cmd, string $a_text)
setEnableHeader(bool $a_enableheader)
TableGUI class for style editor (image list)