2 include_once
"Services/Form/classes/class.ilPropertyFormGUI.php";
3 include_once(
"Services/Style/System/classes/Utilities/class.ilSystemStyleSkinContainer.php");
4 include_once(
"Services/Style/System/classes/Icons/class.ilSystemStyleIconColorSet.php");
5 include_once(
"Services/Style/System/classes/Icons/class.ilSystemStyleIconFolder.php");
57 $this->ctrl = $DIC->ctrl();
58 $this->lng = $DIC->language();
59 $this->tpl = $DIC[
"tpl"];
60 $this->tabs = $DIC->tabs();
63 $skin_id =
$_GET[
"skin_id"];
65 if ($style_id ==
"") {
66 $style_id =
$_GET[
"style_id"];
69 if ($this->ctrl->getCmd() !=
"reset") {
74 $this->ctrl->setCmd(
"fail");
84 $cmd = $this->ctrl->getCmd();
111 $form = $this->initByColorForm();
112 $this->tpl->setContent($form->getHTML());
120 $this->tabs->addSubTab(
'edit', $this->lng->txt(
'edit_by_color'), $this->ctrl->getLinkTarget($this,
'edit'));
121 $this->tabs->addSubTab(
'editIcon', $this->lng->txt(
'edit_by_icon'), $this->ctrl->getLinkTarget($this,
'editIcon'));
122 $this->tabs->addSubTab(
'preview', $this->lng->txt(
'icons_gallery'), $this->ctrl->getLinkTarget($this,
"preview"));
124 if ($active ==
"preview") {
125 $this->tabs->activateSubTab($active);
126 } elseif ($active ==
"cancelIcon" || $active ==
"editIcon") {
127 $this->tabs->activateSubTab(
"editIcon");
129 $this->tabs->activateSubTab(
"edit");
135 $form = $this->initByColorForm();
137 $this->tpl->setContent($form->getHTML());
142 $this->tpl->setContent($this->renderIconsPreviews());
147 public function initByColorForm()
151 $form->setTitle($this->lng->txt(
"adapt_icons"));
152 $form->setDescription($this->lng->txt(
"adapt_icons_description"));
158 $color_set = $this->
getIconFolder()->getColorSet()->getColorsSortedAsArray();
164 foreach ($color_set as
$type => $colors) {
169 $title = $this->lng->txt(
"grey_color");
170 $section->setTitle($this->lng->txt(
"grey_colors"));
171 $section->setInfo($this->lng->txt(
"grey_colors_description"));
172 $section->setSectionAnchor($this->lng->txt(
"grey_colors"));
175 $title = $this->lng->txt(
"red_color");
176 $section->setTitle($this->lng->txt(
"red_colors"));
177 $section->setInfo($this->lng->txt(
"red_colors_description"));
178 $section->setSectionAnchor($this->lng->txt(
"red_colors"));
181 $title = $this->lng->txt(
"green_color");
182 $section->setTitle($this->lng->txt(
"green_colors"));
183 $section->setInfo($this->lng->txt(
"green_colors_description"));
184 $section->setSectionAnchor($this->lng->txt(
"green_colors"));
187 $title = $this->lng->txt(
"blue_color");
188 $section->setTitle($this->lng->txt(
"blue_colors"));
189 $section->setInfo($this->lng->txt(
"blue_colors_description"));
190 $section->setSectionAnchor($this->lng->txt(
"blue_colors"));
194 foreach ($colors as $id => $color) {
200 $input->setInfo(
"Usages: " . $this->
getIconFolder()->getUsagesOfColorAsString($color->getId()));
201 $form->addItem($input);
208 $form->addCommandButton(
"update", $this->lng->txt(
"update_colors"));
210 $form->addCommandButton(
"reset", $this->lng->txt(
"reset_icons"));
212 $form->addCommandButton(
"cancel", $this->lng->txt(
"cancel"));
218 $form->setFormAction($this->ctrl->getFormAction($this));
232 $colors = $this->
getIconFolder()->getColorSet()->getColors();
233 foreach ($colors as $color) {
234 $id = $color->getId();
235 if ($colors[$color->getId()]) {
236 $values[$id] = $colors[$color->getId()]->getColor();
238 $values[$id] = $color->getColor();
254 $this->lng->txt(
"color_reset"),
257 $message_stack->sendMessages(
true);
259 $this->ctrl->redirect($this,
"edit");
264 $form = $this->initByColorForm();
265 if ($form->checkInput()) {
269 foreach ($this->
getIconFolder()->getColorSet()->getColors() as $old_color) {
270 $new_color = $form->getInput($old_color->getId());
271 if (!preg_match(
"/[\dabcdef]{6}/i", $new_color)) {
273 $this->lng->txt(
"invalid_color") . $new_color,
276 } elseif ($new_color != $old_color->getColor()) {
277 $color_changes[$old_color->getColor()] = $new_color;
279 $this->lng->txt(
"color_changed_from") .
" " . $old_color->getColor() .
" " .
280 $this->lng->txt(
"color_changed_to") .
" " . $new_color,
288 $skin->getVersionStep($skin->getVersion());
291 $this->lng->txt(
"color_update"),
294 $message_stack->sendMessages(
true);
295 $this->ctrl->redirect($this,
"edit");
297 $form->setValuesByPost();
298 $this->tpl->setContent($form->getHTML());
304 $icon_name =
$_POST[
'selected_icon']?
$_POST[
'selected_icon']:
$_GET[
'selected_icon'];
310 $form = $this->initByIconForm($icon);
322 $toolbar = $DIC->toolbar();
330 if ($icon->getType() ==
"svg") {
331 $options[$icon->getPath()] = substr($icon->getPath(), $substr_len);
335 $si->setOptions($options);
337 $si->setValue($icon_name);
339 $toolbar->addInputItem(
$si,
true);
342 $select_btn->setCaption($this->lng->txt(
"select"),
false);
343 $toolbar->addButtonInstance($select_btn);
344 $toolbar->setFormAction($this->ctrl->getLinkTarget($this,
'editIcon'));
355 $form->setTitle($this->lng->txt(
"adapt_icon") .
" " . $icon->
getName());
356 $form->setDescription($this->lng->txt(
"adapt_icon_description"));
360 $title = $this->lng->txt(
"color");
362 foreach ($icon->
getColorSet()->getColors() as $color) {
368 $input->setValue($color->getColor());
369 $form->addItem($input);
373 $upload =
new ilFileInputGUI($this->lng->txt(
"change_icon"),
"changed_icon");
375 $form->addItem($upload);
378 $hidden_path->setValue($icon->
getPath());
379 $form->addItem($hidden_path);
382 $form->addCommandButton(
"updateIcon", $this->lng->txt(
"update_icon"));
383 $form->addCommandButton(
"cancelIcon", $this->lng->txt(
"cancel"));
386 $form->setFormAction($this->ctrl->getFormAction($this));
400 foreach ($this->
getIconFolder()->getColorSet()->getColors() as $color) {
401 $values[$color->getId()] = $color->getColor();
403 $values[
"selected_icon"] = $icon->
getPath();
408 public function updateIcon()
413 $icon_path =
$_POST[
'selected_icon'];
416 $form = $this->initByIconForm($icon);
418 if ($form->checkInput()) {
422 foreach ($icon->
getColorSet()->getColors() as $old_color) {
423 $new_color = $form->getInput($old_color->getId());
424 if (!preg_match(
"/[\dabcdef]{6}/i", $new_color)) {
426 $this->lng->txt(
"invalid_color") . $new_color,
429 } elseif ($new_color != $old_color->getColor()) {
430 $color_changes[$old_color->getColor()] = $new_color;
433 $this->lng->txt(
"color_changed_from") .
" " . $old_color->getColor() .
" " .
434 $this->lng->txt(
"color_changed_to") .
" " . $new_color,
441 if (
$_POST[
"changed_icon"]) {
445 $upload = $DIC->upload();
447 $old_icon = $this->
getIconFolder()->getIconByPath($icon_path);
449 $upload->moveOneFileTo(
450 array_pop($upload->getResults()),
451 $old_icon->getDirRelToCustomizing(),
452 Location::CUSTOMIZING,
453 $old_icon->getName(),
460 foreach ($message_stack->getJoinedMessages() as
$type =>
$message) {
463 $skin->getVersionStep($skin->getVersion());
468 $message_stack->sendMessages(
true);
469 $this->ctrl->setParameter($this,
"selected_icon", $icon->
getPath());
470 $this->ctrl->redirect($this,
"editIcon");
472 $form->setValuesByPost();
473 $this->tpl->setContent($form->getHTML());
484 $f = $DIC->ui()->factory();
488 $card =
$f->card()->standard(
493 $report =
$f->panel()->standard($this->lng->txt(
"preview"),
$f->deck([$card]));
495 return $DIC->ui()->renderer()->render($report);
502 protected function renderIconsPreviews()
506 $f = $DIC->ui()->factory();
510 foreach ($this->
getIconFolder()->getIconsSortedByFolder() as $folder_name => $icons) {
513 foreach ($icons as $icon) {
517 $icon_image =
$f->image()->standard($icon->getPath(), $icon->getName());
518 $card =
$f->card()->standard(
522 $colors = $icon->getColorSet()->asString();
524 $card = $card->withSections(array(
525 $f->listing()->descriptive(array($this->lng->txt(
"used_colors") => $colors))
530 $sub_panels[] =
$f->panel()->sub($folder_name,
$f->deck($cards));
533 $report =
$f->panel()->report($this->lng->txt(
"icons"), $sub_panels);
535 return $DIC->ui()->renderer()->render($report);
addSelectIconToolbar($icon_name)
setIconFolder($icon_folder)
setStyleContainer($style_container)
Abstracts an Icon and the necessary actions to get all colors out of an svg Icon. ...
getByIconValues(ilPropertyFormGUI $form, ilSystemStyleIcon $icon)
__construct($skin_id="", $style_id="")
ilSystemStyleIconsGUI constructor.
static generateFromId($skin_id, ilSystemStyleMessageStack $message_stack=null, ilSystemStyleConfig $system_styles_conf=null)
Generate the container class by parsing the corresponding XML.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
renderIconPreview(ilSystemStyleIcon $icon)
setSubStyleSubTabs($active="")
changeColors(array $color_changes)
Changes colors in the svg file of the icon and updates the icon abstraction by extracting the colors ...
Abstracts a folder containing a set of icons.
Used to stack messages to be shown to the user.
Class for advanced editing exception handling in ILIAS.
getByColorValues(ilPropertyFormGUI $form)
executeCommand()
Execute command.