19 declare(strict_types=1);
32 protected string $id =
'';
63 $xml =
new SimpleXMLElement(
"<?xml version='1.0' encoding='UTF-8'?><template/>");
64 $xml->addAttribute(
'xmlns',
'http://www.w3.org');
69 if (!$style->isSubstyle()) {
79 $dom->formatOutput =
true;
80 $dom->loadXML(
$xml->asXML());
81 return $dom->saveXML();
90 $xml_style = $xml->addChild(
'substyle');
92 $xml_style = $xml->addChild(
'style');
94 $xml_style->addAttribute(
'id', $style->
getId());
95 $xml_style->addAttribute(
'name', $style->
getName());
97 $xml_style->addAttribute(
'css_file', $style->
getCssFile());
104 file_put_contents($path, $this->
asXML());
109 $this->styles[] = $style;
118 if ($style->getId() ==
$id) {
119 unset($this->styles[
$index]);
132 if ($style->getId() ==
$id) {
142 if ($style->getId() ==
$id) {
151 return array_values($this->styles)[0];
156 return current($this->styles) !==
false;
161 return key($this->styles);
176 reset($this->styles);
181 return count($this->styles);
192 public function setId(
string $id): void
194 if (strpos($id,
' ') !==
false) {
197 $this->
id = str_replace(
' ',
'_', $id);
241 $v = explode(
'.', ($version ==
'' ?
'0.1' : $version));
243 $v[$count - 1] = ((
int) $v[$count - 1] + 1);
244 $this->version = implode(
'.', $v);
251 return ($this->version !=
'$Id$');
258 $substyle->setSubstyleOf($new_parent_style_id);
271 if ($style->getId() != $style_id && $style->isSubstyle()) {
272 if ($style->getSubstyleOf() == $style_id) {
273 $substyles[$style->getId()] = $style;
287 if ($style->getId() != $style_id && $style->isSubstyle()) {
288 if ($style->getSubstyleOf() == $style_id) {
hasStyleSubstyles(string $style_id)
Returns wheter a given style has substyles.
string $version
Version of skin, as provided by the template.
string $name
Name of the skin, as provided in the template.
asXML()
Stores the skin and all it's styles as xml.
string $id
ID of the skin, equals the name of the folder this skin is stored in.
setVersion(string $version)
updateParentStyleOfSubstyles(string $old_parent_style_id, string $new_parent_style_id)
writeToXMLFile(string $path)
const INVALID_CHARACTERS_IN_ID
getSubstylesOfStyle(string $style_id)
__construct(string $id, string $name)
isSubstyle()
Return wheter this style is a substyle of another.
addChildToXML(SimpleXMLElement $xml, ilSkinStyle $style)
Used to generate the xml for styles contained by the skin.
getVersionStep(string $version)
ilSkin holds an manages the basic data of a skin as provide by the template of the skin...
addStyle(ilSkinStyle $style)