[svn r14307] Added user theme selection in user's profile (includes creating api_get_themes() in main_api and corresponding select list in FormValidator). Implements part of FS#2204
parent
e46199593f
commit
52d58d47e0
@ -0,0 +1,46 @@ |
|||||||
|
<?php |
||||||
|
// $Id: $ |
||||||
|
/* |
||||||
|
============================================================================== |
||||||
|
Dokeos - elearning and course management software |
||||||
|
|
||||||
|
Copyright (c) 2004-2008 Dokeos S.A. |
||||||
|
Copyright (c) Bart Mollet, Hogeschool Gent |
||||||
|
|
||||||
|
For a full list of contributors, see "credits.txt". |
||||||
|
The full license can be read in "license.txt". |
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or |
||||||
|
modify it under the terms of the GNU General Public License |
||||||
|
as published by the Free Software Foundation; either version 2 |
||||||
|
of the License, or (at your option) any later version. |
||||||
|
|
||||||
|
See the GNU General Public License for more details. |
||||||
|
|
||||||
|
Contact address: Dokeos, 44 rue des palais, B-1030 Brussels, Belgium |
||||||
|
Mail: info@dokeos.com |
||||||
|
============================================================================== |
||||||
|
*/ |
||||||
|
require_once ('HTML/QuickForm/select.php'); |
||||||
|
/** |
||||||
|
* A dropdownlist with all themes to use with QuickForm |
||||||
|
*/ |
||||||
|
class HTML_QuickForm_Select_Theme extends HTML_QuickForm_select |
||||||
|
{ |
||||||
|
/** |
||||||
|
* Class constructor |
||||||
|
*/ |
||||||
|
function HTML_QuickForm_Select_Theme($elementName=null, $elementLabel=null, $options=null, $attributes=null) |
||||||
|
{ |
||||||
|
parent::HTML_QuickForm_Select($elementName, $elementLabel, $options, $attributes); |
||||||
|
// Get all languages |
||||||
|
$themes = api_get_themes(); |
||||||
|
$this->_options = array(); |
||||||
|
$this->_values = array(); |
||||||
|
foreach ($themes as $theme) |
||||||
|
{ |
||||||
|
$this->addOption($theme,$theme); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
?> |
||||||
Loading…
Reference in new issue