19 declare(strict_types=1);
26 protected string $id =
'';
61 string $css_file =
'',
62 string $image_directory =
'',
63 string $font_directory =
'',
64 string $sound_directory =
'',
65 string $parent_style =
'' 70 if ($css_file ==
'') {
71 $css_file = $this->
getId();
74 if ($image_directory ==
'') {
75 $image_directory =
'images';
78 if ($font_directory ==
'') {
79 $font_directory =
'fonts';
82 if ($sound_directory ==
'') {
83 $sound_directory =
'sound';
99 (string) $xml_element->attributes()[
'id'],
100 (string) $xml_element->attributes()[
'name'],
101 (string) $xml_element->attributes()[
'css_file'],
102 (string) $xml_element->attributes()[
'image_directory'],
103 (string) $xml_element->attributes()[
'font_directory'],
104 (string) $xml_element->attributes()[
'sound_directory']
116 public function setId(
string $id): void
118 if (strpos($id,
' ') !==
false) {
121 $this->
id = str_replace(
' ',
'_', $id);
string $sound_directory
Directory to store sound files 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.
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.
referencesResource(string $resource)
Checks if a resource (folder) relative to the style is referenced by this style.