19 declare(strict_types=1);
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();
55 $this->style_obj = $a_style_obj;
62 $this->
addColumn($this->
lng->txt(
"sty_commands"),
"",
"1");
65 $this->
setRowTemplate(
"tpl.style_color_row.html",
"components/ILIAS/Style/Content");
70 if ($this->access_manager->checkWrite()) {
79 $this->
setData($this->style_obj->getColors());
82 protected function fillRow(array $a_set): void
87 for ($i = -80; $i <= 80; $i += 20) {
88 $this->tpl->setCurrentBlock(
"flavor");
89 $this->tpl->setVariable(
"FLAVOR_NAME",
"(" . $i .
")");
90 $this->tpl->setVariable(
94 $this->tpl->parseCurrentBlock();
98 $this->tpl->setVariable(
"COLOR_NAME", $a_set[
"name"]);
99 $this->tpl->setVariable(
"COLOR_CODE", $a_set[
"code"]);
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(
106 $ilCtrl->getLinkTarget($this->parent_obj,
"editColor")
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
ilObjStyleSheet $style_obj
setDescription(string $a_val)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
__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)