19 declare(strict_types=1);
79 $this->
setStyleContainer($this->skin_factory->skinStyleContainerFromId($skin_id, $this->message_stack));
84 $cmd = $this->
ctrl->getCmd();
87 if ($this->
ctrl->getCmd() !=
'reset') {
119 $this->message_stack->sendMessages();
122 protected function fail(): void
124 $form = $this->initByColorForm();
125 $this->tpl->setContent($form->getHTML());
130 $this->
tabs->addSubTab(
'edit', $this->
lng->txt(
'edit_by_color'), $this->
ctrl->getLinkTarget($this,
'edit'));
131 $this->
tabs->addSubTab(
133 $this->
lng->txt(
'edit_by_icon'),
134 $this->
ctrl->getLinkTarget($this,
'editIcon')
136 $this->
tabs->addSubTab(
138 $this->
lng->txt(
'icons_gallery'),
139 $this->
ctrl->getLinkTarget($this,
'preview')
142 if ($active ==
'preview') {
143 $this->
tabs->activateSubTab($active);
144 } elseif ($active ==
'cancelIcon' || $active ==
'editIcon') {
145 $this->
tabs->activateSubTab(
'editIcon');
147 $this->
tabs->activateSubTab(
'edit');
151 protected function edit(): void
153 $form = $this->initByColorForm();
155 $this->tpl->setContent($form->getHTML());
160 $this->tpl->setContent($this->renderer->render($this->getIconsPreviews()));
167 $form->setTitle($this->
lng->txt(
'adapt_icons'));
168 $form->setDescription($this->
lng->txt(
'adapt_icons_description'));
173 $color_set = $this->
getIconFolder()->getColorSet()->getColorsSortedAsArray();
181 foreach ($color_set as
$type => $colors) {
186 $title = $this->
lng->txt(
'grey_color');
187 $section->setTitle($this->
lng->txt(
'grey_colors'));
188 $section->setInfo($this->
lng->txt(
'grey_colors_description'));
189 $section->setSectionAnchor($this->
lng->txt(
'grey_colors'));
192 $title = $this->
lng->txt(
'red_color');
193 $section->setTitle($this->
lng->txt(
'red_colors'));
194 $section->setInfo($this->
lng->txt(
'red_colors_description'));
195 $section->setSectionAnchor($this->
lng->txt(
'red_colors'));
198 $title = $this->
lng->txt(
'green_color');
199 $section->setTitle($this->
lng->txt(
'green_colors'));
200 $section->setInfo($this->
lng->txt(
'green_colors_description'));
201 $section->setSectionAnchor($this->
lng->txt(
'green_colors'));
204 $title = $this->
lng->txt(
'blue_color');
205 $section->setTitle($this->
lng->txt(
'blue_colors'));
206 $section->setInfo($this->
lng->txt(
'blue_colors_description'));
207 $section->setSectionAnchor($this->
lng->txt(
'blue_colors'));
209 $form->addItem($section);
211 foreach ($colors as
$id => $color) {
217 $input->setInfo(
'Usages: ' . $this->
getIconFolder()->getUsagesOfColorAsString($color->getId()));
218 $form->addItem($input);
225 $form->addCommandButton(
'update', $this->
lng->txt(
'update_colors'));
227 $form->addCommandButton(
'reset', $this->
lng->txt(
'reset_icons'));
229 $form->addCommandButton(
'cancel', $this->
lng->txt(
'cancel'));
232 $form->setFormAction($this->
ctrl->getFormAction($this));
241 $colors = $this->
getIconFolder()->getColorSet()->getColors();
242 foreach ($colors as $color) {
243 $id = $color->getId();
244 if (array_key_exists($color->getId(), $colors)) {
245 $values[
$id] = $colors[$color->getId()]->getColor();
247 $values[
$id] = $color->getColor();
261 $this->
lng->txt(
'color_reset'),
264 $message_stack->sendMessages();
266 $this->
ctrl->redirect($this,
'edit');
271 $form = $this->initByColorForm();
272 if ($form->checkInput()) {
276 foreach ($this->
getIconFolder()->getColorSet()->getColors() as $old_color) {
277 $new_color = $form->getInput($old_color->getId());
278 if (!preg_match(
'/[\dabcdef]{6}/i', $new_color)) {
280 $this->
lng->txt(
'invalid_color') . $new_color,
283 } elseif ($new_color != $old_color->getColor()) {
284 $color_changes[$old_color->getColor()] = $new_color;
286 $this->
lng->txt(
'color_changed_from') .
' ' . $old_color->getColor() .
' ' .
287 $this->
lng->txt(
'color_changed_to') .
' ' . $new_color,
295 $skin->getVersionStep($skin->getVersion());
298 $this->
lng->txt(
'color_update'),
302 $this->
ctrl->redirect($this,
'edit');
304 $form->setValuesByPost();
305 $this->tpl->setContent($form->getHTML());
311 if ($this->request_wrapper->post()->has(
'selected_icon')) {
312 $icon_name = $this->request_wrapper->post()->retrieve(
314 $this->
refinery->kindlyTo()->string()
316 } elseif ($this->request_wrapper->query()->has(
'selected_icon')) {
317 $icon_name = $this->request_wrapper->query()->retrieve(
319 $this->
refinery->kindlyTo()->string()
327 $form = $this->initByIconForm($icon);
340 if ($icon->getType() ==
'svg') {
341 $options[$icon->getPath()] = substr($icon->getPath(), $substr_len);
347 $si->setValue($icon_name);
349 $this->
toolbar->addInputItem($si,
true);
351 $this->
toolbar->addComponent($this->ui_factory->button()->standard(
352 $this->
lng->txt(
'select'),
355 $this->
toolbar->setFormAction($this->
ctrl->getLinkTarget($this,
'editIcon'));
362 $form->setTitle($this->
lng->txt(
'adapt_icon') .
' ' . $icon->
getName());
363 $form->setDescription($this->
lng->txt(
'adapt_icon_description'));
365 $title = $this->
lng->txt(
'color');
367 foreach ($icon->
getColorSet()->getColors() as $color) {
373 $input->setValue($color->getColor());
374 $form->addItem($input);
379 $upload->setSuffixes([
'svg']);
380 $form->addItem($upload);
383 $hidden_path->setValue($icon->
getPath());
384 $form->addItem($hidden_path);
387 $form->addCommandButton(
'updateIcon', $this->
lng->txt(
'update_icon'));
388 $form->addCommandButton(
'cancelIcon', $this->
lng->txt(
'cancel'));
391 $form->setFormAction($this->
ctrl->getFormAction($this));
396 protected function updateIcon():
void 398 $icon_path = $this->request_wrapper->post()->retrieve(
400 $this->
refinery->kindlyTo()->string()
405 $form = $this->initByIconForm($icon);
407 if ($form->checkInput()) {
411 foreach ($icon->
getColorSet()->getColors() as $old_color) {
412 $new_color = $form->getInput($old_color->getId());
413 if (!preg_match(
'/[\dabcdef]{6}/i', $new_color)) {
415 $this->
lng->txt(
'invalid_color') . $new_color,
418 } elseif ($new_color != $old_color->getColor()) {
419 $color_changes[$old_color->getColor()] = $new_color;
422 $this->
lng->txt(
'color_changed_from') .
' ' . $old_color->getColor() .
' ' .
423 $this->
lng->txt(
'color_changed_to') .
' ' . $new_color,
430 if ($this->
upload->hasUploads()) {
432 $result = array_values($this->
upload->getResults())[0];
434 $old_icon = $this->
getIconFolder()->getIconByPath($icon_path);
436 $this->
upload->moveOneFileTo(
438 $old_icon->getDirRelToCustomizing(),
439 Location::CUSTOMIZING,
440 $old_icon->getName(),
446 $this->
lng->txt(
'color_update'),
453 $skin->getVersionStep($skin->getVersion());
458 $this->
ctrl->setParameter($this,
'selected_icon', $icon->
getPath());
459 $this->
ctrl->redirect($this,
'editIcon');
461 $form->setValuesByPost();
462 $this->tpl->setContent($form->getHTML());
467 $icon_image = $this->ui_factory->image()->standard($icon->
getPath(), $icon->
getName());
469 $card = $this->ui_factory->card()->standard(
474 $report = $this->ui_factory->panel()->standard($this->
lng->txt(
'preview'), $this->ui_factory->deck([$card]));
476 return $this->renderer->render($report);
482 foreach ($this->
getIconFolder()->getIconsSortedByFolder() as $folder_name => $icons) {
485 foreach ($icons as $icon) {
489 $icon_image = $this->ui_factory->image()->standard($icon->getPath(), $icon->getName());
490 $card = $this->ui_factory->card()->standard(
494 $colors = $icon->getColorSet()->asString();
496 $card = $card->withSections([
497 $this->ui_factory->listing()->descriptive([$this->
lng->txt(
'used_colors') => $colors])
502 $sub_panels[] = $this->ui_factory->panel()->sub($folder_name, $this->ui_factory->deck($cards));
505 return $this->ui_factory->panel()->report($this->
lng->txt(
'icons'), $sub_panels);
ilSystemStyleMessageStack $message_stack
An entity that renders components to a string output.
__construct(ilCtrl $ctrl, ilLanguage $lng, ilGlobalTemplateInterface $tpl, Factory $ui_factory, Renderer $renderer, WrapperFactory $request_wrapper, ilToolbarGUI $toolbar, Refinery $refinery, ilSkinFactory $skin_factory, ilTabsGUI $tabs, FileUpload $upload, string $skin_id, string $style_id)
setSubStyleSubTabs(string $active='')
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Factory to create Skin classes holds an manages the basic data of a skin as provide by the template o...
addSelectIconToolbar(?string $icon_name='')
addMessage(ilSystemStyleMessage $message)
Add a message to be displayed by the stack.
setStyleContainer(ilSkinStyleContainer $style_container)
setIconFolder(ilSystemStyleIconFolder $icon_folder)
Abstracts an Icon and the necessary actions to get all colors out of an svg Icon. ...
This class is responsible for all file system related actions related actions of a skin such as copyi...
This describes how a Report could be modified during construction of UI.
ilSkinStyleContainer $style_container
skinStyleContainerFromId(string $skin_id, ilSystemStyleMessageStack $message_stack)
Get container class is responsible for all file system related actions related actions of a skin such...
ilSystemStyleIconFolder $icon_folder
sendMessages(bool $keep=true)
Send messages via ilUtil to be displayed, still needed for messagees, that need to survive a redirect...
ilGlobalTemplateInterface $tpl
renderIconPreview(ilSystemStyleIcon $icon)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilSkinFactory $skin_factory
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.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
getJoinedMessages()
Return an array containing a string with all messages for each type.
Class for advanced editing exception handling in ILIAS.
getByColorValues(ilPropertyFormGUI $form)
WrapperFactory $request_wrapper