XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
formselecttheme.php
Go to the documentation of this file.
1 <?php
21 defined('XOOPS_ROOT_PATH') or die('Restricted access');
22 
23 xoops_load('XoopsLists');
25 
29 class XoopsFormSelectTheme extends XoopsFormSelect
30 {
39  function XoopsFormSelectTheme($caption, $name, $value = null, $size = 1)
40  {
41  $this->XoopsFormSelect($caption, $name, $value, $size);
42  $this->addOptionArray(XoopsLists::getThemesList());
43  }
44 }
45 
46 ?>