ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
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 
43 
49  protected $default_variables_path = "./templates/default/less/variables.less";
50 
56  protected $default_images_path = "./templates/default/images/";
57 
63  protected $default_fonts_path = "./templates/default/fonts/";
64 
70  protected $default_sounds_path = "";
71 
77  protected $customizing_skin_path = "./Customizing/global/skin/";
78 
82  public function getDefaultSkinId()
83  {
85  }
86 
91  {
92  $this->default_skin_id = $default_skin_id;
93  }
94 
98  public function getDefaultStyleId()
99  {
101  }
102 
107  {
108  $this->default_style_id = $default_style_id;
109  }
110 
114  public function getDefaultTemplatePath()
115  {
117  }
118 
123  {
124  $this->default_template_path = $default_template_path;
125  }
126 
130  public function getDelosPath()
131  {
132  return $this->delos_path;
133  }
134 
138  public function setDelosPath($delos_path)
139  {
140  $this->delos_path = $delos_path;
141  }
142 
146  public function getDefaultVariablesPath()
147  {
149  }
150 
155  {
156  $this->default_variables_path = $default_variables_path;
157  }
158 
162  public function getDefaultImagesPath()
163  {
165  }
166 
171  {
172  $this->default_images_path = $default_images_path;
173  }
174 
178  public function getDefaultFontsPath()
179  {
181  }
182 
187  {
188  $this->default_fonts_path = $default_fonts_path;
189  }
190 
194  public function getDefaultSoundsPath()
195  {
197  }
198 
203  {
204  $this->default_sounds_path = $default_sounds_path;
205  }
206 
210  public function getCustomizingSkinPath()
211  {
213  }
214 
219  {
220  $this->customizing_skin_path = $customizing_skin_path;
221  }
222 }
setDefaultFontsPath($default_fonts_path)
setCustomizingSkinPath($customizing_skin_path)
setDefaultTemplatePath($default_template_path)
setDefaultImagesPath($default_images_path)
setDefaultStyleId($default_style_id)
setDefaultSoundsPath($default_sounds_path)
$customizing_skin_path
Customizing skin path to place folders for custom skins into.
ilSystemStyleConfig wraps all &#39;constants&#39; to ensure the testability of all classes using those &#39;const...
setDefaultVariablesPath($default_variables_path)
setDefaultSkinId($default_skin_id)