ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSystemStyleConfigGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 
29 {
30  protected ilCtrl $ctrl;
31  protected ilLanguage $lng;
33  protected ilTabsGUI $tabs;
34  protected Factory $ui_factory;
35  protected Renderer $renderer;
38  protected Refinery $refinery;
40  protected ilObjUser $user;
41  protected ilTree $tree;
43  protected string $style_id;
46 
47  public function __construct(
48  ilCtrl $ctrl,
49  ilLanguage $lng,
51  ilTabsGUI $tabs,
52  Factory $ui_factory,
53  Renderer $renderer,
54  ilSkinFactory $skin_factory,
55  WrapperFactory $request_wrapper,
56  Refinery $refinery,
57  ilToolbarGUI $toolbar,
58  ilObjUser $user,
59  ServerRequestInterface $request,
60  ilTree $tree,
61  string $skin_id,
62  string $style_id
63  ) {
64  $this->ctrl = $ctrl;
65  $this->lng = $lng;
66  $this->tpl = $tpl;
67  $this->tabs = $tabs;
68  $this->ui_factory = $ui_factory;
69  $this->skin_factory = $skin_factory;
70  $this->request_wrapper = $request_wrapper;
71  $this->refinery = $refinery;
72  $this->toolbar = $toolbar;
73  $this->tree = $tree;
74  $this->style_id = $style_id;
75  $this->renderer = $renderer;
76  $this->user = $user;
77  $this->request = $request;
78  $this->message_stack = new ilSystemStyleMessageStack($this->tpl);
79 
80  $this->style_container = $this->skin_factory->skinStyleContainerFromId($skin_id, $this->message_stack);
81  }
82 
83  public function executeCommand(): void
84  {
85  $cmd = $this->ctrl->getCmd() ? $this->ctrl->getCmd() : 'edit';
86  $style = $this->style_container->getSkin()->getStyle($this->style_id);
87 
88  $assign_gui = new ilSubStyleAssignmentGUI(
89  $this,
90  $this->ctrl,
91  $this->lng,
92  $this->tpl,
93  $this->toolbar,
94  $this->tree,
95  $this->request_wrapper,
96  $this->refinery,
97  $this->ui_factory
98  );
99 
100  switch ($cmd) {
101  case 'deleteAssignments':
102  $assign_gui->deleteAssignments($this->style_container->getSkin(), $style);
103  break;
104  case 'saveAssignment':
105  $assign_gui->saveAssignment($this->style_container->getSkin(), $style);
106  break;
107  case 'addAssignment':
108  $assign_gui->addAssignment();
109  break;
110  case 'assignStyle':
111  $assign_gui->assignStyle($this->style_container->getSkin(), $style);
112  break;
113  case 'save':
114  $this->save();
115  break;
116  case 'edit':
117  default:
118  $this->edit();
119  break;
120  }
121  }
122 
123  protected function edit(): void
124  {
125  $form = $this->editSystemStyleForm();
126  $this->tpl->setContent($this->renderer->render($form));
127  }
128 
129  protected function save(): void
130  {
131  $new_skin = $this->style_container->getSkin();
132  $new_style = $new_skin->getStyle($this->style_id);
133  $old_skin = clone $new_skin;
134  $old_style = clone $new_style;
135 
136  $form = $this->editSystemStyleForm();
137  $form = $form->withRequest($this->request);
138  $result = $form->getData();
139 
140  if ($result) {
141  try {
142  $new_skin->updateParentStyleOfSubstyles($old_style->getId(), $new_style->getId());
143  $this->style_container->updateSkin($old_skin);
144  $this->style_container->updateStyle($new_style->getId(), $old_style);
145 
146  if ($old_style->isSubstyle()) {
147  $new_style->setSubstyleOf($old_style->getSubstyleOf());
149  $old_style->getId(),
150  $new_style->getId()
151  );
152  } else {
154  $old_skin->getId(),
155  $old_style->getId(),
156  $new_skin->getId(),
157  $new_style->getId()
158  );
159 
160  $this->handleStyleActivation(
161  $result['activation_section'],
162  $new_skin->getId(),
163  $new_style->getId(),
165  );
166  }
167 
168  $this->ctrl->setParameterByClass('ilsystemstyleconfiggui', 'skin_id', $new_skin->getId());
169  $this->ctrl->setParameterByClass('ilsystemstyleconfiggui', 'style_id', $new_style->getId());
170  $this->message_stack->prependMessage(new ilSystemStyleMessage($this->lng->txt('msg_sys_style_update')));
171  $this->message_stack->sendMessages();
172  $this->ctrl->redirectByClass('ilsystemstyleconfiggui');
173  } catch (ilSystemStyleException $e) {
174  $this->message_stack->prependMessage(new ilSystemStyleMessage(
175  $e->getMessage(),
177  ));
178  }
179  }
180 
181  $this->tpl->setContent($this->renderer->render(
182  array_merge($this->message_stack->getUIComponentsMessages($this->ui_factory), [$form])
183  ));
184  }
185 
186  protected function handleStyleActivation(
187  ?array $activation_values,
188  string $skin_id,
189  string $style_id,
190  ilSystemStyleMessageStack $message_stack
191  ): void {
192  $active = false;
193  $personal = false;
194  $default = false;
195 
196  if (is_array($activation_values)) {
197  $active = true;
198  $personal = (bool) $activation_values['personal'];
199  $default = (bool) $activation_values['default'];
200  }
201  if ($active) {
202  ilSystemStyleSettings::_activateStyle($skin_id, $style_id);
203  if ($personal) {
205  }
206  if ($default) {
208  }
209  } else {
210  ilSystemStyleSettings::_deactivateStyle($skin_id, $style_id);
211  }
212 
213  $system_style_conf = new ilSystemStyleConfig();
214 
215  //If style has been unset as personal style
216  if (!$personal && $this->user->getPref('skin') == $skin_id) {
217  //Reset to default if possible, else change to delos
218  if (!$default) {
222  );
223  } else {
225  $system_style_conf->getDefaultSkinId(),
226  $system_style_conf->getDefaultStyleId()
227  );
228  }
229  $message_stack->addMessage(
231  $this->lng->txt('personal_style_set_to') . ' ' .
234  )
235  );
236  }
237  if (!$default && ilSystemStyleSettings::getCurrentDefaultSkin() == $skin_id) {
239  $system_style_conf->getDefaultSkinId(),
240  $system_style_conf->getDefaultStyleId()
241  );
242  $message_stack->addMessage(
244  $this->lng->txt('default_style_set_to') . ' ' . $system_style_conf->getDefaultSkinId() . ': ' . $system_style_conf->getDefaultStyleId(),
246  )
247  );
248  }
249  }
250 
254  protected function editSystemStyleForm(): Form
255  {
256  $f = $this->ui_factory->input();
257  $skin = $this->style_container->getSkin();
258  $style = $skin->getStyle($this->style_id);
259 
260  if (!$style->isSubstyle()) {
261  $skin_fields = [];
262  $skin_fields[] = $f->field()->text($this->lng->txt('skin_id'), $this->lng->txt('skin_id_description'))
263  ->withRequired(true)
264  ->withValue($skin->getId())
265  ->withAdditionalTransformation($this->refinery->custom()->transformation(
266  function ($v) use ($skin) {
267  $skin->setId($v);
268  }
269  ));
270 
271  $skin_fields[] = $f->field()->text($this->lng->txt('skin_name'), $this->lng->txt('skin_name_description'))
272  ->withRequired(true)
273  ->withValue($skin->getName())
274  ->withAdditionalTransformation($this->refinery->custom()->transformation(
275  function ($v) use ($skin) {
276  $skin->setName($v);
277  }
278  ));
279 
280  if ($skin->isVersionChangeable()) {
281  $skin_fields[] = $f->field()->text(
282  $this->lng->txt('skin_version'),
283  $this->lng->txt('skin_version_description')
284  )
285  ->withDisabled(true)
286  ->withValue($skin->getVersion())
287  ->withAdditionalTransformation($this->refinery->custom()->transformation(
288  function ($v) use ($skin) {
289  $skin->getVersionStep($v);
290  }
291  ));
292  }
293  $sections[] = $f->field()->section($skin_fields, $this->lng->txt('skin'));
294  }
295 
296  $style_id = $f->field()->text($this->lng->txt('style_id'), $this->lng->txt('style_id_description'))
297  ->withRequired(true)
298  ->withValue($style->getId())
299  ->withAdditionalTransformation($this->refinery->custom()->transformation(
300  function ($v) use ($style) {
301  $style->setId($v);
302  $style->setCssFile($v);
303  }
304  ));
305  $style_name = $f->field()->text($this->lng->txt('style_name'), $this->lng->txt('style_name_description'))
306  ->withRequired(true)
307  ->withValue($style->getName())
308  ->withAdditionalTransformation($this->refinery->custom()->transformation(
309  function ($v) use ($style) {
310  $style->setName($v);
311  }
312  ));
313  $image_dir = $f->field()->text($this->lng->txt('image_dir'), $this->lng->txt('image_dir_description'))
314  ->withValue($style->getImageDirectory())
315  ->withAdditionalTransformation($this->refinery->custom()->transformation(
316  function ($v) use ($style) {
317  $style->setImageDirectory($v);
318  }
319  ));
320  $font_dir = $f->field()->text($this->lng->txt('font_dir'), $this->lng->txt('font_dir_description'))
321  ->withValue($style->getFontDirectory())
322  ->withAdditionalTransformation($this->refinery->custom()->transformation(
323  function ($v) use ($style) {
324  $style->setFontDirectory($v);
325  }
326  ));
327  $sound_dir = $f->field()->text($this->lng->txt('sound_dir'), $this->lng->txt('sound_dir_description'))
328  ->withValue($style->getSoundDirectory())
329  ->withAdditionalTransformation($this->refinery->custom()->transformation(
330  function ($v) use ($style) {
331  $style->setSoundDirectory($v);
332  }
333  ));
334  $section_name = $this->lng->txt('style');
335  if ($style->isSubstyle()) {
336  $this->lng->txt('sub_style');
337  }
338  $sections[] = $f->field()->section([$style_id, $style_name, $image_dir, $font_dir, $sound_dir], $section_name);
339 
340  if (!$style->isSubstyle()) {
341  $active = ilSystemStyleSettings::_lookupActivatedStyle($skin->getId(), $style->getId());
342  $activation_values = null;
343  if ($active) {
344  $is_personal_style = $this->user->getPref('skin') == $skin->getId()
345  && $this->user->getPref('style') == $style->getId();
346  $is_default_style = ilSystemStyleSettings::getCurrentDefaultSkin() == $skin->getId()
347  && ilSystemStyleSettings::getCurrentDefaultStyle() == $style->getId();
348  $activation_values = ['default' => $is_default_style, 'personal' => $is_personal_style];
349  }
350 
351  $default = $f->field()->checkbox(
352  $this->lng->txt('default'),
353  $this->lng->txt('system_style_default_description')
354  );
355 
356  $personal = $f->field()->checkbox(
357  $this->lng->txt('personal'),
358  $this->lng->txt('system_style_personal_description')
359  );
360 
361  $activation = $f->field()->optionalGroup(
362  ['default' => $default, 'personal' => $personal],
363  $this->lng->txt('system_style_activation'),
364  $this->lng->txt('system_style_activation_description')
365  )->withValue($activation_values);
366  $sections['activation_section'] = $f->field()->section(
367  ['activation' => $activation],
368  $this->lng->txt('system_style_activation')
369  )
370  ->withAdditionalTransformation($this->refinery->custom()->transformation(
371  function ($v) {
372  return $v['activation'];
373  }
374  ));
375  }
376 
377  return $f->container()->form()->standard($this->ctrl->getFormActionByClass(
378  'ilsystemstyleconfiggui',
379  'save'
380  ), $sections);
381  }
382 }
static _lookupActivatedStyle(string $a_skin, string $a_style)
lookup if a style is activated
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getCurrentUserPrefSkin()
Gets a users preferred skin by using the user object.
static getCurrentDefaultSkin()
Gets default Skin of the System.
Factory to create Skin classes holds an manages the basic data of a skin as provide by the template o...
static getCurrentUserPrefStyle()
Gets a users preferred style by using the user object.
renderer()
addMessage(ilSystemStyleMessage $message)
Add a message to be displayed by the stack.
static _deactivateStyle(string $a_skin, string $a_style)
deactivate system style
static _activateStyle(string $a_skin, string $a_style)
activate system style
This class is responsible for all file system related actions related actions of a skin such as copyi...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This is how the factory for UI elements looks.
Definition: Factory.php:37
ilGlobalTemplateInterface $tpl
static updateSkinIdAndStyleIDOfSubStyleCategoryAssignments(string $old_skin_id, string $old_style_id, string $new_skin_id, string $new_style_id)
Updates an assignment, e.g.
static setCurrentDefaultStyle(string $skin_id, string $style_id)
Sets the default style of the system.
ilSystemStyleMessageStack $message_stack
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
handleStyleActivation(?array $activation_values, string $skin_id, string $style_id, ilSystemStyleMessageStack $message_stack)
ilSystemStyleConfig wraps all &#39;constants&#39; to ensure the testability of all classes using those &#39;const...
__construct(ilCtrl $ctrl, ilLanguage $lng, ilGlobalTemplateInterface $tpl, ilTabsGUI $tabs, Factory $ui_factory, Renderer $renderer, ilSkinFactory $skin_factory, WrapperFactory $request_wrapper, Refinery $refinery, ilToolbarGUI $toolbar, ilObjUser $user, ServerRequestInterface $request, ilTree $tree, string $skin_id, string $style_id)
Used to stack messages to be shown to the user.
static getCurrentDefaultStyle()
Gets default style of the system.
static updateSubStyleIdfSubStyleCategoryAssignments(string $old_substyle_id, string $new_substyle_id)
Updates an assignment, e.g.
static setCurrentUserPrefStyle(string $skin_id, string $style_id)
Sets a users preferred system skin/style by using the user object.