ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilStyleDefinition.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
29  public static string $current_style;
30 
34  public static ?array $skins = null;
35 
39  protected ilSkin $skin;
40 
44  protected static array $cached_all_styles_information;
45 
51 
53 
58  public function __construct(string $skin_id = '', ?ilSystemStyleConfig $system_style_config = null)
59  {
60  global $DIC;
61 
62  if ($skin_id == '') {
63  $skin_id = self::getCurrentSkin();
64  }
65 
66  if (!$system_style_config) {
68  } else {
69  $this->setSystemStylesConf($system_style_config);
70  }
71 
72  $this->skin_factory = new ilSkinFactory($DIC->language(), $this->getSystemStylesConf());
73 
74  if ($skin_id != $this->getSystemStylesConf()->getDefaultSkinId()) {
75  $this->setSkin($this->skin_factory->skinFromXML($this->getSystemStylesConf()->getCustomizingSkinPath() . $skin_id . '/template.xml'));
76  } else {
77  $this->setSkin($this->skin_factory->skinFromXML($this->getSystemStylesConf()->getDefaultTemplatePath()));
78  }
79  }
80 
86  public static function getCurrentSkin(): ?string
87  {
88  global $DIC;
89 
90  if (!$DIC || is_array($DIC)) {
91  return null;
92  }
93  if ($DIC->isDependencyAvailable('systemStyle') && is_object($DIC->systemStyle()->getSkin())) {
94  return $DIC->systemStyle()->getSkin()->getId();
95  } else {
96  $system_style_conf = new ilSystemStyleConfig();
97 
98  if ($DIC->isDependencyAvailable('user') && is_object($DIC->user()) && property_exists(
99  $DIC->user(),
100  'skin'
101  )) {
102  $skin_id = $DIC->user()->skin;
103  if ($skin_id && !self::skinExists($skin_id)) {
104  if($DIC->isDependencyAvailable('systemStyle')) {
105  $messages = new ilSystemStyleMessageStack($DIC->ui()->mainTemplate());
106  $message_text = $DIC->language()->txt('set_skin_does_not_exist') . ' ' . $skin_id;
107  $messages->addMessage(new ilSystemStyleMessage($message_text, ilSystemStyleMessage::TYPE_ERROR));
108  $messages->sendMessages();
109  }
110  $skin_id = $system_style_conf->getDefaultSkinId();
111  }
112  return $skin_id === '' ? $system_style_conf->getDefaultSkinId() : $skin_id;
113  } else {
114  return null;
115  }
116  }
117  }
118 
122  public function getStyles(): array
123  {
124  return $this->getSkin()->getStyles();
125  }
126 
127  public function getTemplateName(): string
128  {
129  return $this->getSkin()->getName();
130  }
131 
135  public function getStyle(string $a_id): ilSkinStyle
136  {
137  return $this->getSkin()->getStyle($a_id);
138  }
139 
143  public function getStyleName(string $a_id): string
144  {
145  return $this->getSkin()->getStyle($a_id)->getName();
146  }
147 
151  public function getImageDirectory(string $style_id): string
152  {
153  if (!$style_id) {
155  }
156  try {
157  return $this->getSkin()->getStyle($style_id)->getImageDirectory();
158  } catch (ilSystemStyleException $e) {
160  }
161  }
162 
166  public function getSoundDirectory(string $style_id): string
167  {
168  return $this->getSkin()->getStyle($style_id)->getSoundDirectory();
169  }
170 
174  public static function getAllSkins(?ilSystemStyleConfig $system_style_config = null): array
175  {
176  if (!self::$skins) {
177  if (!$system_style_config) {
178  $system_style_config = new ilSystemStyleConfig();
179  }
180 
181  global $DIC;
182 
183  $skin_factory = new ilSkinFactory($DIC->language(), $system_style_config);
184 
188  $skins = [];
189  $skins[$system_style_config->getDefaultSkinId()] = $skin_factory->skinFromXML($system_style_config->getDefaultTemplatePath());
190 
191  if (is_dir($system_style_config->getCustomizingSkinPath())) {
192  $cust_skins_directory = new RecursiveDirectoryIterator(
193  $system_style_config->getCustomizingSkinPath(),
194  FilesystemIterator::SKIP_DOTS
195  );
196  foreach ($cust_skins_directory as $skin_folder) {
197  if ($skin_folder->isDir()) {
198  $template_path = $skin_folder->getRealPath() . '/template.xml';
199  if (file_exists($template_path)) {
200  $skin = $skin_factory->skinFromXML($template_path);
201  $skins[$skin->getId()] = $skin;
202  }
203  }
204  }
205  }
206 
207  self::setSkins($skins);
208  }
209 
210  return self::$skins;
211  }
212 
216  public static function skinExists(string $skin_id, ?ilSystemStyleConfig $system_style_config = null): bool
217  {
218  if (!$system_style_config) {
219  $system_style_config = new ilSystemStyleConfig();
220  }
221 
222  if ($skin_id == $system_style_config->getDefaultSkinId()) {
223  if (is_file($system_style_config->getDefaultTemplatePath())) {
224  return true;
225  }
226  } elseif (is_file($system_style_config->getCustomizingSkinPath() . $skin_id . '/template.xml')) {
227  return true;
228  }
229  return false;
230  }
231 
238  public static function getCurrentStyle(): ?string
239  {
240  global $DIC;
241 
242  if (isset(self::$current_style)) {
243  return self::$current_style;
244  }
245 
246  if (!$DIC || is_array($DIC) || !$DIC->isDependencyAvailable('user')) {
247  return null;
248  }
249 
250  if (array_key_exists('style', $DIC->user()->prefs) && $DIC->user()->prefs['style']) {
251  self::setCurrentStyle($DIC->user()->prefs['style']);
252  } else {
253  $system_style_config = new ilSystemStyleConfig();
254  self::setCurrentStyle($system_style_config->getDefaultStyleId());
255  }
256 
257  if ($DIC->isDependencyAvailable('systemStyle') && self::styleExistsForCurrentSkin(self::$current_style)) {
258  if ($DIC->systemStyle()->getSkin()->hasStyleSubstyles(self::$current_style)) {
259  // read assignments, if given
261  self::getCurrentSkin(),
262  self::$current_style
263  );
264  if (count($assignments) > 0) {
265  $ref_ass = [];
266  foreach ($assignments as $a) {
267  if ($DIC->systemStyle()->getSkin()->hasStyle($a['substyle'])) {
268  $ref_ass[$a['ref_id']] = $a['substyle'];
269  }
270  }
271 
272  $ref_id = '';
273 
274  if ($DIC->http()->wrapper()->query()->has('ref_id')) {
275  $ref_id = $DIC->http()->wrapper()->query()->retrieve(
276  'ref_id',
277  $DIC->refinery()->kindlyTo()->string()
278  );
279  } elseif ($DIC->http()->wrapper()->query()->has('target')) {
280  $target = $DIC->http()->wrapper()->query()->retrieve(
281  'target',
282  $DIC->refinery()->kindlyTo()->string()
283  );
284  $target_arr = explode('_', $target);
285  $ref_id = $target_arr[1];
286  }
287 
288  // check whether any ref id assigns a new style
289  if ($DIC->isDependencyAvailable('repositoryTree') && $ref_id && $DIC->repositoryTree()->isInTree((int) $ref_id)) {
290  $path = $DIC->repositoryTree()->getPathId((int) $ref_id);
291  for ($i = count($path) - 1; $i >= 0; $i--) {
292  if (isset($ref_ass[$path[$i]])) {
293  self::$current_style = $ref_ass[$path[$i]];
294  return self::$current_style;
295  }
296  }
297  }
298  }
299  }
300  }
301 
302  if ($DIC->isDependencyAvailable('systemStyle') && !self::styleExistsForCurrentSkin(self::$current_style)) {
303  $messages = new ilSystemStyleMessageStack($DIC->ui()->mainTemplate());
304  $message_text = $DIC->language()->txt('set_style_does_not_exist') . ' ' . self::$current_style;
305  $messages->addMessage(new ilSystemStyleMessage($message_text, ilSystemStyleMessage::TYPE_ERROR));
306  $messages->sendMessages();
307  $system_style_config = new ilSystemStyleConfig();
308  self::setCurrentSkin($system_style_config->getDefaultSkinId());
309  self::setCurrentStyle($system_style_config->getDefaultStyleId());
310  }
311 
312  return self::$current_style;
313  }
314 
320  public static function getAllSkinStyles(): ?array
321  {
322  global $DIC;
323 
324  if (!self::getCachedAllStylesInformation()) {
325  $all_styles = [];
326 
327  $skins = $DIC->systemStyle()->getSkins();
328 
329  foreach ($skins as $skin) {
330  foreach ($skin->getStyles() as $style) {
331  $num_users = ilObjUser::_getNumberOfUsersForStyle($skin->getId(), $style->getId());
332 
333  $parent_name = '';
334  if ($style->getSubstyleOf()) {
335  $parent_name = $skin->getStyle($style->getSubstyleOf())->getName();
336  }
337 
338  $version = $skin->getVersion();
339  if ($version == '$Id$') {
340  $version = '-';
341  }
342  // default selection list
343  $all_styles[$skin->getId() . ':' . $style->getId()] = [
344  'title' => $skin->getName() . ' / ' . $style->getName(),
345  'id' => $skin->getId() . ':' . $style->getId(),
346  'skin_id' => $skin->getId(),
347  'skin_name' => $skin->getName(),
348  'template_id' => $skin->getId(),
349  'template_name' => $skin->getName(),
350  'style_id' => $style->getId(),
351  'style_name' => $style->getName(),
352  'substyle_of' => $style->getSubstyleOf(),
353  'substyle_of_name' => $parent_name,
354  'users' => $num_users,
355  'version' => $version,
356  ];
357  }
358  }
359  self::setCachedAllStylesInformation($all_styles);
360  }
361 
362  return self::getCachedAllStylesInformation();
363  }
364 
368  public static function setCurrentSkin(string $a_skin): void
369  {
370  global $DIC;
371 
372  if ($DIC->isDependencyAvailable('systemStyle') && $DIC->systemStyle()->getSkin()->getName() != $a_skin) {
373  $styleDefinition = new ilStyleDefinition($a_skin);
374  if (!self::styleExistsForCurrentSkin(self::$current_style)) {
375  $styleDefinition->setCurrentStyle($DIC->systemStyle()->getSkin()->getDefaultStyle()->getId());
376  }
377  }
378  }
379 
383  public static function styleExists(string $style_id): bool
384  {
385  foreach (self::getSkins() as $skin) {
386  if ($skin->hasStyle($style_id)) {
387  return true;
388  }
389  }
390  return false;
391  }
392 
396  public static function styleExistsForSkinId(string $skin_id, string $style_id): bool
397  {
398  global $DIC;
399 
400  if (!self::skinExists($skin_id)) {
401  return false;
402  }
403  $factory = new ilSkinFactory($DIC->language());
404  $skin = $factory->skinStyleContainerFromId($skin_id, new ilSystemStyleMessageStack($DIC->ui()->mainTemplate()))->getSkin();
405  return $skin->hasStyle($style_id);
406  }
407 
408  public static function styleExistsForCurrentSkin(string $style_id): bool
409  {
410  global $DIC;
411 
412  return $DIC->systemStyle()->getSkin()->hasStyle($style_id);
413  }
414 
415  public static function setCurrentStyle(string $a_style): void
416  {
417  self::$current_style = $a_style;
418  }
419 
424  public static function getSkins(): array
425  {
426  return self::getAllSkins();
427  }
428 
432  public static function setSkins(array $skins): void
433  {
434  self::$skins = $skins;
435  }
436 
437  public function getSkin(): ilSkin
438  {
439  return $this->skin;
440  }
441 
442  public function setSkin(ilSkin $skin): void
443  {
444  $this->skin = $skin;
445  }
446 
447  protected static function getCachedAllStylesInformation(): ?array
448  {
449  if (!isset(self::$cached_all_styles_information)) {
450  return null;
451  }
452  return self::$cached_all_styles_information;
453  }
454 
455  protected static function setCachedAllStylesInformation(array $cached_all_styles_information): void
456  {
457  self::$cached_all_styles_information = $cached_all_styles_information;
458  }
459 
461  {
463  }
464 
465  public function setSystemStylesConf(ilSystemStyleConfig $system_style_config)
466  {
467  $this->system_style_config = $system_style_config;
468  }
469 }
static setCachedAllStylesInformation(array $cached_all_styles_information)
static setCurrentStyle(string $a_style)
getSoundDirectory(string $style_id)
ilSystemStyleConfig $system_style_config
Used to wire this component up with the correct paths into the customizing directory.
$version
Definition: plugin.php:24
static styleExists(string $style_id)
Factory to create Skin classes holds an manages the basic data of a skin as provide by the template o...
__construct(string $skin_id='', ?ilSystemStyleConfig $system_style_config=null)
ilStyleDefinition constructor.
static string $current_style
currently selected style, used for caching
static styleExistsForCurrentSkin(string $style_id)
static getSystemStyleCategoryAssignments(string $a_skin_id, string $a_style_id)
Get all system sub styles category assignments.
$path
Definition: ltiservices.php:29
static _getNumberOfUsersForStyle(string $a_skin, string $a_style)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$messages
Definition: xapiexit.php:21
static getAllSkinStyles()
Get all skins/styles as array (convenient for tables) Attention: tempalte_name/template_id in this ar...
$ref_id
Definition: ltiauth.php:65
static getCurrentSkin()
get the current skin use always this function instead of getting the account&#39;s skin the current skin ...
static styleExistsForSkinId(string $skin_id, string $style_id)
static setSkins(array $skins)
static array $cached_all_styles_information
Used for caching.
global $DIC
Definition: shib_login.php:22
ilSkin $skin
Sets the current skin.
ilSystemStyleConfig wraps all &#39;constants&#39; to ensure the testability of all classes using those &#39;const...
setSystemStylesConf(ilSystemStyleConfig $system_style_config)
static skinExists(string $skin_id, ?ilSystemStyleConfig $system_style_config=null)
Check whether a skin exists.
static setCurrentSkin(string $a_skin)
getImageDirectory(string $style_id)
Used to stack messages to be shown to the user.
ilStyleDefinition acts as a wrapper of style related actions.
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
static array $skins
Skins available, used for caching.
static getCurrentStyle()
get the current style or sub style use always this function instead of getting the account&#39;s style th...
ilSkin holds an manages the basic data of a skin as provide by the template of the skin...