2 include_once(
"Services/Style/System/classes/Exceptions/class.ilSystemStyleException.php");
3 include_once(
"Services/Style/System/classes/Utilities/class.ilSkinStyleXML.php");
60 public static function parseFromXML($path =
"")
63 $xml =
new SimpleXMLElement(file_get_contents($path));
68 $id = basename(dirname($path));
69 $skin =
new self(
$id, (string)
$xml->attributes()[
"name"]);
70 $skin->setVersion((
string)
$xml->attributes()[
"version"]);
78 foreach (
$xml->children() as $style_xml) {
84 if ($style_xml->getName() ==
"substyle") {
88 $style->setSubstyleOf($last_style->getId());
92 $skin->addStyle($style);
104 $xml =
new SimpleXMLElement(
'<?xml version="1.0" encoding="UTF-8"?><template/>');
105 $xml->addAttribute(
"xmlns",
"http://www.w3.org");
112 if (!$style->isSubstyle()) {
121 $dom =
new DOMDocument(
'1.0',
'utf-8');
122 $dom->formatOutput =
true;
123 $dom->loadXML(
$xml->asXML());
124 return $dom->saveXML();
137 $xml_style = $xml->addChild(
"substyle");
139 $xml_style = $xml->addChild(
"style");
141 $xml_style->addAttribute(
"id", $style->
getId());
142 $xml_style->addAttribute(
"name", $style->
getName());
144 $xml_style->addAttribute(
"css_file", $style->
getCssFile());
154 file_put_contents($path, $this->
asXML());
161 $this->styles[] = $style;
171 if ($style->getId() ==
$id) {
172 unset($this->styles[
$index]);
187 if ($style->getId() ==
$id) {
201 if ($style->getId() ==
$id) {
213 return array_values($this->styles)[0];
223 return current($this->styles) !==
false;
231 return key($this->styles);
248 reset($this->styles);
256 return count($this->styles);
273 if (strpos(
$id,
' ') !==
false) {
276 $this->
id = str_replace(
" ",
"_",
$id);
338 $this->version = implode(
'.', $v);
345 return ($this->version !=
'$Id$');
352 $substyle->setSubstyleOf($new_parent_style_id);
363 $substyles = array();
367 if ($style->getId() != $style_id && $style->isSubstyle()) {
368 if ($style->getSubstyleOf() == $style_id) {
369 $substyles[$style->getId()] = $style;
384 if ($style_id !=
"" && $this->
getStyle($style_id)) {
386 if ($style->getId() != $style_id && $style->isSubstyle()) {
387 if ($style->getSubstyleOf() == $style_id) {
addStyle(ilSkinStyleXML $style)
__construct($id, $name)
ilSkinXML constructor.
static parseFromXMLElement(SimpleXMLElement $xml_element)
hasStyleSubstyles($style_id)
Returns wheter a given style has substyles.
getSubstylesOfStyle($style_id)
ilSkinXml holds an manages the basic data of a skin as provide by the template of the skin...
isSubstyle()
Return wheter this style is a substyle of another.
updateParentStyleOfSubstyles($old_parent_style_id, $new_parent_style_id)
const INVALID_CHARACTERS_IN_ID
addChildToXML(SimpleXMLElement $xml, ilSkinStyleXML $style)
Used to generate the xml for styles contained by the skin.
Class for advanced editing exception handling in ILIAS.
const FILE_OPENING_FAILED
count()
Countable implementations.
valid()
Iterator implementations.
asXML()
Stores the skin and all it's styles as xml.