Merge branch 'master' of git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin...
[phpmyadmin/crack.git] / libraries / Theme_Manager.class.php
blobb179ccc201fa384b29cc8ae395b0d21b22b03829
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @package phpMyAdmin
6 */
8 /**
10 * @package phpMyAdmin
12 class PMA_Theme_Manager
14 /**
15 * @var string path to theme folder
16 * @access protected
18 var $_themes_path;
20 /**
21 * @var array available themes
23 var $themes = array();
25 /**
26 * @var string cookie name
28 var $cookie_name = 'pma_theme';
30 /**
31 * @var boolean
33 var $per_server = false;
35 /**
36 * @var string name of active theme
38 var $active_theme = '';
40 /**
41 * @var object PMA_Theme active theme
43 var $theme = null;
45 /**
46 * @var string
48 var $theme_default = 'original';
50 function __construct()
52 $this->init();
55 /**
56 * sets path to folder containing the themes
58 * @param string $path path to themes folder
59 * @return boolean success
61 function setThemesPath($path)
63 if (! $this->_checkThemeFolder($path)) {
64 return false;
67 $this->_themes_path = trim($path);
68 return true;
71 /**
72 * @public
73 * @return string
75 function getThemesPath()
77 return $this->_themes_path;
80 /**
81 * sets if there are different themes per server
83 * @param boolean $per_server
85 function setThemePerServer($per_server)
87 $this->per_server = (bool) $per_server;
90 function init()
92 $this->themes = array();
93 $this->theme_default = 'original';
94 $this->active_theme = '';
96 if (! $this->setThemesPath($GLOBALS['cfg']['ThemePath'])) {
97 return false;
100 $this->setThemePerServer($GLOBALS['cfg']['ThemePerServer']);
102 $this->loadThemes();
104 $this->theme = new PMA_Theme;
107 if (! $this->checkTheme($GLOBALS['cfg']['ThemeDefault'])) {
108 trigger_error(
109 sprintf(__('Default theme %s not found!'),
110 htmlspecialchars($GLOBALS['cfg']['ThemeDefault'])),
111 E_USER_ERROR);
112 $GLOBALS['cfg']['ThemeDefault'] = false;
115 $this->theme_default = $GLOBALS['cfg']['ThemeDefault'];
117 // check if user have a theme cookie
118 if (! $this->getThemeCookie()
119 || ! $this->setActiveTheme($this->getThemeCookie())) {
120 // otherwise use default theme
121 if ($GLOBALS['cfg']['ThemeDefault']) {
122 $this->setActiveTheme($GLOBALS['cfg']['ThemeDefault']);
123 } else {
124 // or original theme
125 $this->setActiveTheme('original');
130 function checkConfig()
132 if ($this->_themes_path != trim($GLOBALS['cfg']['ThemePath'])
133 || $this->theme_default != $GLOBALS['cfg']['ThemeDefault']) {
134 $this->init();
135 } else {
136 // at least the theme path needs to be checked every time for new
137 // themes, as there is no other way at the moment to keep track of
138 // new or removed themes
139 $this->loadThemes();
143 function setActiveTheme($theme = null)
145 if (! $this->checkTheme($theme)) {
146 trigger_error(
147 sprintf(__('Theme %s not found!'), htmlspecialchars($theme)),
148 E_USER_ERROR);
149 return false;
152 $this->active_theme = $theme;
153 $this->theme = $this->themes[$theme];
155 // need to set later
156 //$this->setThemeCookie();
158 return true;
162 * @return string cookie name
164 function getThemeCookieName()
166 // Allow different theme per server
167 if (isset($GLOBALS['server']) && $this->per_server) {
168 return $this->cookie_name . '-' . $GLOBALS['server'];
169 } else {
170 return $this->cookie_name;
175 * returns name of theme stored in the cookie
176 * @return string theme name from cookie
178 function getThemeCookie()
180 if (isset($_COOKIE[$this->getThemeCookieName()])) {
181 return $_COOKIE[$this->getThemeCookieName()];
184 return false;
188 * save theme in cookie
191 function setThemeCookie()
193 $GLOBALS['PMA_Config']->setCookie($this->getThemeCookieName(), $this->theme->id,
194 $this->theme_default);
195 // force a change of a dummy session variable to avoid problems
196 // with the caching of phpmyadmin.css.php
197 $GLOBALS['PMA_Config']->set('theme-update', $this->theme->id);
198 return true;
202 * @private
203 * @param string $folder
204 * @return boolean
206 /*private*/ function _checkThemeFolder($folder)
208 if (! is_dir($folder)) {
209 trigger_error(
210 sprintf(__('Theme path not found for theme %s!'),
211 htmlspecialchars($folder)),
212 E_USER_ERROR);
213 return false;
216 return true;
220 * read all themes
222 function loadThemes()
224 $this->themes = array();
226 if ($handleThemes = opendir($this->getThemesPath())) {
227 // check for themes directory
228 while (false !== ($PMA_Theme = readdir($handleThemes))) {
229 if (array_key_exists($PMA_Theme, $this->themes)) {
230 // this does nothing!
231 //$this->themes[$PMA_Theme] = $this->themes[$PMA_Theme];
232 continue;
234 $new_theme = PMA_Theme::load($this->getThemesPath() . '/' . $PMA_Theme);
235 if ($new_theme) {
236 $new_theme->setId($PMA_Theme);
237 $this->themes[$PMA_Theme] = $new_theme;
239 } // end get themes
240 closedir($handleThemes);
241 } else {
242 trigger_error(
243 'phpMyAdmin-ERROR: cannot open themes folder: ' . $this->getThemesPath(),
244 E_USER_WARNING);
245 return false;
246 } // end check for themes directory
248 ksort($this->themes);
249 return true;
253 * checks if given theme name is a known theme
255 * @param string $theme name fo theme to check for
257 function checkTheme($theme)
259 if (! array_key_exists($theme, $this->themes)) {
260 return false;
263 return true;
267 * returns HTML selectbox, with or without form enclosed
269 * @param boolean $form whether enclosed by from tags or not
271 function getHtmlSelectBox($form = true)
273 $select_box = '';
275 if ($form) {
276 $select_box .= '<form name="setTheme" method="post" action="index.php"'
277 .' target="_parent">';
278 $select_box .= PMA_generate_common_hidden_inputs();
281 $theme_selected = false;
282 $theme_preview_path= './themes.php';
283 $theme_preview_href = '<a href="' . $theme_preview_path . '" target="themes" onclick="'
284 . "window.open('" . $theme_preview_path . "','themes','left=10,top=20,width=510,height=350,scrollbars=yes,status=yes,resizable=yes');"
285 . '">';
286 $select_box .= $theme_preview_href . __('Theme') . '</a>:' . "\n";
288 $select_box .= '<select name="set_theme" xml:lang="en" dir="ltr"'
289 .' onchange="this.form.submit();" >';
290 foreach ($this->themes as $each_theme_id => $each_theme) {
291 $select_box .= '<option value="' . $each_theme_id . '"';
292 if ($this->active_theme === $each_theme_id) {
293 $select_box .= ' selected="selected"';
295 $select_box .= '>' . htmlspecialchars($each_theme->getName()) . '</option>';
297 $select_box .= '</select>';
299 if ($form) {
300 $select_box .= '<noscript><input type="submit" value="' . __('Go') . '" /></noscript>';
301 $select_box .= '</form>';
304 return $select_box;
308 * enables backward compatibility
310 function makeBc()
312 $GLOBALS['theme'] = $this->theme->getId();
313 $GLOBALS['pmaThemePath'] = $this->theme->getPath();
314 $GLOBALS['pmaThemeImage'] = $this->theme->getImgPath();
317 * load layout file if exists
319 if (@file_exists($GLOBALS['pmaThemePath'] . 'layout.inc.php')) {
320 include $GLOBALS['pmaThemePath'] . 'layout.inc.php';
327 * prints out preview for every theme
330 function printPreviews()
332 foreach ($this->themes as $each_theme) {
333 $each_theme->printPreview();
334 } // end 'open themes'
338 * returns PMA_Theme object for fall back theme
339 * @return object PMA_Theme
341 function getFallBackTheme()
343 if (isset($this->themes['original'])) {
344 return $this->themes['original'];
347 return false;
351 * prints css data
353 function printCss($type)
355 if ($this->theme->loadCss($type)) {
356 return true;
359 // if loading css for this theme failed, try default theme css
360 $fallback_theme = $this->getFallBackTheme();
361 if ($fallback_theme && $fallback_theme->loadCss($type)) {
362 return true;
365 return false;