ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilSystemStyleConfig.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
14{
20 protected $default_skin_id = "default";
21
27 protected $default_style_id = "delos";
28
34 protected $default_template_path = "./templates/default/template.xml";
35
41 protected $delos_path = "./templates/default/delos";
42
48 protected $rel_delos_path = "../../../../templates/default/delos";
49
50
56 protected $default_variables_path = "./templates/default/less/variables.less";
57
63 protected $default_images_path = "./templates/default/images/";
64
70 protected $default_fonts_path = "./templates/default/fonts/";
71
77 protected $default_sounds_path = "";
78
84 protected $customizing_skin_path = "./Customizing/global/skin/";
85
89 public function getDefaultSkinId()
90 {
92 }
93
98 {
99 $this->default_skin_id = $default_skin_id;
100 }
101
105 public function getDefaultStyleId()
106 {
108 }
109
114 {
115 $this->default_style_id = $default_style_id;
116 }
117
121 public function getDefaultTemplatePath()
122 {
124 }
125
130 {
131 $this->default_template_path = $default_template_path;
132 }
133
137 public function getDelosPath()
138 {
139 return $this->delos_path;
140 }
141
145 public function setDelosPath($delos_path)
146 {
147 $this->delos_path = $delos_path;
148 }
149
153 public function getDefaultVariablesPath()
154 {
156 }
157
162 {
163 $this->default_variables_path = $default_variables_path;
164 }
165
169 public function getDefaultImagesPath()
170 {
172 }
173
178 {
179 $this->default_images_path = $default_images_path;
180 }
181
185 public function getDefaultFontsPath()
186 {
188 }
189
194 {
195 $this->default_fonts_path = $default_fonts_path;
196 }
197
201 public function getDefaultSoundsPath()
202 {
204 }
205
210 {
211 $this->default_sounds_path = $default_sounds_path;
212 }
213
217 public function getCustomizingSkinPath()
218 {
220 }
221
226 {
227 $this->customizing_skin_path = $customizing_skin_path;
228 }
229
233 public function getRelDelosPath()
234 {
236 }
237
242 {
243 $this->rel_delos_path = $rel_delos_path;
244 }
245}
An exception for terminatinating execution or to throw for unit testing.
ilSystemStyleConfig wraps all 'constants' to ensure the testability of all classes using those 'const...
setCustomizingSkinPath($customizing_skin_path)
setDefaultImagesPath($default_images_path)
setDefaultSoundsPath($default_sounds_path)
setDefaultStyleId($default_style_id)
setDefaultTemplatePath($default_template_path)
setDefaultSkinId($default_skin_id)
setDefaultFontsPath($default_fonts_path)
setDefaultVariablesPath($default_variables_path)
$customizing_skin_path
Customizing skin path to place folders for custom skins into.