XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
formselectlang.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 XoopsFormSelectLang extends XoopsFormSelect
30 {
40  function XoopsFormSelectLang($caption, $name, $value = null, $size = 1)
41  {
42  $this->XoopsFormSelect($caption, $name, $value, $size);
43  $this->addOptionArray(XoopsLists::getLangList());
44  }
45 }
46 
47 ?>