19 declare(strict_types=1);
26 protected string $id =
'';
66 string $css_file =
'',
67 string $image_directory =
'',
68 string $font_directory =
'',
69 string $sound_directory =
'',
70 string $parent_style =
'' 75 if ($css_file ==
'') {
76 $css_file = $this->
getId();
79 if ($image_directory ==
'') {
80 $image_directory =
'images';
83 if ($font_directory ==
'') {
84 $font_directory =
'fonts';
87 if ($sound_directory ==
'') {
88 $sound_directory =
'sound';
104 (string) $xml_element->attributes()[
'id'],
105 (string) $xml_element->attributes()[
'name'],
106 (string) $xml_element->attributes()[
'css_file'],
107 (string) $xml_element->attributes()[
'image_directory'],
108 (string) $xml_element->attributes()[
'font_directory'],
109 (string) $xml_element->attributes()[
'sound_directory']
121 public function setId(
string $id): void
123 if (strpos($id,
' ') !==
false) {
126 $this->
id = str_replace(
' ',
'_', $id);
string $sound_directory
Directory to store sound into.
setSoundDirectory(string $sound_directory)
string $id
Id of the skin.
static parseFromXMLElement(SimpleXMLElement $xml_element)
setFontDirectory(string $font_directory)
string $image_directory
Directory to store image files into.
string $sound_directory_name
Directory to store sound files into.
const INVALID_CHARACTERS_IN_ID
string $name
Name of the style visible in all UI elements.
string $css_file
Css file name of the skin.
__construct(string $id, string $name, string $css_file='', string $image_directory='', string $font_directory='', string $sound_directory='', string $parent_style='')
setSubstyleOf(string $substyle_of)
Sets style as sub style of another.
setImageDirectory(string $image_directory)
isSubstyle()
Return wheter this style is a substyle of another.
string $font_directory
Directory to store fonts into.
setCssFile(string $css_file)
getSubstyleOf()
Returns the parent style of this style if set.
string $substyle_of
Parent of the skin if set.