19 declare(strict_types=1);
44 public function skinFromXML(
string $path =
''):
ilSkin 47 $xml =
new SimpleXMLElement(file_get_contents(
$path));
61 foreach (
$xml->children() as $style_xml) {
67 if ($style_xml->getName() ==
'substyle') {
71 $style->setSubstyleOf($last_style->getId());
75 $skin->addStyle($style);
93 if ($skin_id !=
'default') {
96 $this->skinFromXML($this->config->getCustomizingSkinPath() . $skin_id .
'/template.xml'),
103 $this->skinFromXML($this->config->getDefaultTemplatePath()),
115 string $import_zip_path,
119 $skin_id = preg_replace(
'/[^A-Za-z0-9\-_]/',
'', rtrim($name,
'.zip'));
125 $skin_path = $this->config->getCustomizingSkinPath() . $skin_id;
127 mkdir($skin_path, 0775,
true);
129 $temp_zip_path = $skin_path .
'/' .
$name;
130 rename($import_zip_path, $temp_zip_path);
133 unlink($temp_zip_path);
146 string $new_skin_txt_addon =
'Copy' 148 $new_skin_id_addon =
'';
149 $new_skin_name_addon =
'';
152 $container->
getSkin()->getId() . $new_skin_id_addon,
155 $new_skin_id_addon .= $new_skin_txt_addon;
156 $new_skin_name_addon .=
' ' . $new_skin_txt_addon;
159 $new_skin_path = rtrim($container->
getSkinDirectory(),
'/') . $new_skin_id_addon;
161 mkdir($new_skin_path, 0775,
true);
164 $skin_container->getSkin()->setName($skin_container->getSkin()->getName() . $new_skin_name_addon);
165 $skin_container->getSkin()->setVersion(
'0.1');
166 $skin_container->updateSkin($skin_container->getSkin());
167 return $skin_container;
static parseFromXMLElement(SimpleXMLElement $xml_element)
Factory to create Skin classes holds an manages the basic data of a skin as provide by the template o...
__construct(ilLanguage $lng, ?ilSystemStyleConfig $config=null)
File System Helper, to reduce deps.
ilSystemStyleConfig $config
static unzip(string $path_to_zip_file, bool $overwrite_existing=false, bool $unpack_flat=false)
setVersion(string $version)
This class is responsible for all file system related actions related actions of a skin such as copyi...
skinStyleContainerFromId(string $skin_id, ilSystemStyleMessageStack $message_stack)
Get container class is responsible for all file system related actions related actions of a skin such...
copyFromSkinStyleContainer(ilSkinStyleContainer $container, ilFileSystemHelper $file_system, ilSystemStyleMessageStack $message_stack, string $new_skin_txt_addon='Copy')
Copies a complete Skin.
const FILE_OPENING_FAILED
ilSystemStyleConfig wraps all 'constants' to ensure the testability of all classes using those 'const...
static skinExists(string $skin_id, ?ilSystemStyleConfig $system_style_config=null)
Check whether a skin exists.
Used to stack messages to be shown to the user.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
skinStyleContainerFromZip(string $import_zip_path, string $name, ilSystemStyleMessageStack $message_stack)
Imports a skin from zip.
ilSkin holds an manages the basic data of a skin as provide by the template of the skin...
recursiveCopy(string $src, string $dest)
Recursive copy of a folder.