19 declare(strict_types=1);
58 if (!$system_styles_conf) {
83 foreach ($this->
getSkin()->getStyles() as $style) {
84 $this->file_system->createResourceDirectory(
88 $this->file_system->createResourceDirectory(
92 $this->file_system->createResourceDirectory(
100 $this->
lng->txt(
'less_compile_failed') .
' ' . $e->getMessage(),
117 $old_customizing_skin_directory = $this->
getSystemStylesConf()->getCustomizingSkinPath() . $old_skin->getId() .
'/';
120 if ($old_skin->getId() != $this->
getSkin()->getId()) {
121 $this->file_system->move($old_customizing_skin_directory, $this->
getSkinDirectory());
134 $style = $this->
getSkin()->getStyle($style_id);
137 $this->file_system->changeResourceDirectory(
139 $style->getImageDirectory(),
144 $this->file_system->createResourceDirectory(
153 $this->file_system->changeResourceDirectory(
155 $style->getFontDirectory(),
160 $this->file_system->createResourceDirectory(
169 $this->file_system->changeResourceDirectory(
171 $style->getSoundDirectory(),
176 $this->file_system->createResourceDirectory(
234 $references_ids = [];
235 foreach ($this->
getSkin()->getStyles() as $style) {
236 if ($style->referencesResource($resource)) {
237 $references_ids[] = $style->getId();
240 return $references_ids;
264 $this->
lng->txt(
'main_less_created') .
' ' .
$path,
287 $this->file_system->createResourceDirectory(
307 $content .=
"// Import Custom Less Files here\n";
316 public function delete():
void 318 $this->file_system->recursiveRemoveDir(self::getSkinDirectory());
340 $this->
lng->txt(
'style_assignments_deleted') .
' ' . $style->
getName(),
352 $this->file_system->removeResourceDirectory(
357 $this->file_system->removeResourceDirectory(
362 $this->file_system->removeResourceDirectory(
371 $this->
lng->txt(
'style_deleted') .
' ' . $style->
getName(),
395 $rel_tmp_zip =
'../' . $this->
getSkin()->getId() .
'.zip';
402 string $old_style_import,
403 string $new_style_import
405 $main_less_content = file_get_contents($main_path);
406 $main_less_content = str_replace(
407 "@import \"" . $old_style_import,
408 "@import \"" . $new_style_import,
411 file_put_contents($main_path, $main_less_content);
419 if (!PATH_TO_LESSC) {
423 $output = shell_exec(PATH_TO_LESSC .
' ' . $this->
getLessFilePath($style_id));
425 $less_error = shell_exec(PATH_TO_LESSC .
' ' . $this->
getLessFilePath($style_id) .
' 2>&1');
429 'Empty css output, unknown error.' 469 return $this->
getSkin()->getStyle($style_id)->getCssFile() .
'-variables.less';
489 $this->
getSkin()->addStyle($style);
const SKIN_ALREADY_EXISTS
const LESSC_NOT_INSTALLED
setSystemStylesConf(ilSystemStyleConfig $system_styles_conf)
setMessageStack(ilSystemStyleMessageStack $message_stack)
ilSystemStyleConfig $system_styles_conf
Used to wire this component up with the correct pathes into the customizing directory.
addStyle(ilSkinStyle $style)
getCSSFilePath(string $style_id)
ilSystemStyleMessageStack $message_stack
Used to stack messages to be displayed to the user (mostly reports for failed actions) ...
getLessMainFileDefautContent(ilSkinStyle $style)
Returns the main less default content if a new style is created.
ilSkin $skin
Data-scope for the skin this container capsules.
File System Helper, to reduce deps.
getLessVariablesFilePath(string $style_id)
addMessage(ilSystemStyleMessage $message)
Add a message to be displayed by the stack.
resetImages(ilSkinStyle $style)
Copies (resets) the images from delos.
changeVariablesImport(string $main_path, string $old_style_import, string $new_style_import)
This class is responsible for all file system related actions related actions of a skin such as copyi...
copyVariablesFromDefault(ilSkinStyle $style)
Copies (resets) the variables file from delos.
createMainLessFile(ilSkinStyle $style)
Creates the main less file.
static deliverFileAttached(string $path_to_file, ?string $download_file_name=null, ?string $mime_type=null, bool $delete_file=false)
getImagesSkinPath(string $style_id)
static deleteSubStyleCategoryAssignments(string $a_skin_id, string $a_style_id, string $a_substyle)
Delets a sub styles category assignment.
getLessFilePath(string $style_id)
deleteStyle(ilSkinStyle $style)
Deletes a style completely.
copyCSSFromDefault(ilSkinStyle $style)
Copies (resets) the images from delos.
createTempZip()
Creates a temp zip file.
getLessVariablesName(string $style_id)
resourcesStyleReferences(string $resource)
Checks if a given resource (folder) is still referenced by a style of the containers skin...
ilFileSystemHelper $file_system
updateStyle(string $style_id, ilSkinStyle $old_style)
Updates one single style.
ilSystemStyleConfig wraps all 'constants' to ensure the testability of all classes using those 'const...
isSubstyle()
Return wheter this style is a substyle of another.
create(ilSystemStyleMessageStack $message_stack)
Creates a new skin.
static zip(string $a_dir, string $a_file, bool $compress_content=false)
zips given directory/file into given zip.file
export()
Exports the complete skin to an zip file.
Used to stack messages to be shown to the user.
createLessStructure(ilSkinStyle $style)
Creates the less/css structure of a style.
const LESS_COMPILE_FAILED
compileLess(string $style_id)
__construct(ilLanguage $lng, ilSkin $skin, ilSystemStyleMessageStack $message_stack, ilSystemStyleConfig $system_styles_conf=null, ilFileSystemHelper $file_system=null)
getSubstyleOf()
Returns the parent style of this style if set.
updateSkin(ilSkin $old_skin=null)
Updates the skin.
ilSkin holds an manages the basic data of a skin as provide by the template of the skin...