htdocs/install/include/createconfigform.php 1 location
|
@@ 113-115 (lines=3) @@
|
| 110 |
|
} |
| 111 |
|
break; |
| 112 |
|
|
| 113 |
|
case 'timezone': |
| 114 |
|
$ele = new Xoops\Form\SelectTimeZone($title, $config[$i]->getVar('conf_name'), $config[$i]->getConfValueForOutput()); |
| 115 |
|
break; |
| 116 |
|
|
| 117 |
|
case 'language': |
| 118 |
|
$ele = new Xoops\Form\SelectLanguage($title, $config[$i]->getVar('conf_name'), $config[$i]->getConfValueForOutput()); |
htdocs/modules/system/class/form/preferences.php 1 location
|
@@ 203-205 (lines=3) @@
|
| 200 |
|
$ele->addOptionArray($list); */ |
| 201 |
|
break; |
| 202 |
|
|
| 203 |
|
case 'timezone': |
| 204 |
|
$ele = new Xoops\Form\SelectTimeZone($title, $obj[$i]->getVar('conf_name'), $obj[$i]->getConfValueForOutput()); |
| 205 |
|
break; |
| 206 |
|
|
| 207 |
|
case 'language': |
| 208 |
|
$ele = new Xoops\Form\SelectLanguage($title, $obj[$i]->getVar('conf_name'), $obj[$i]->getConfValueForOutput()); |
htdocs/modules/userconfigs/class/form/configs.php 1 location
|
@@ 157-159 (lines=3) @@
|
| 154 |
|
$ele->addOptionArray($list); */ |
| 155 |
|
break; |
| 156 |
|
|
| 157 |
|
case 'timezone': |
| 158 |
|
$ele = new Xoops\Form\SelectTimeZone($title, $obj[$i]->getVar('conf_name'), $obj[$i]->getConfValueForOutput()); |
| 159 |
|
break; |
| 160 |
|
|
| 161 |
|
case 'language': |
| 162 |
|
$ele = new Xoops\Form\SelectLanguage($title, $obj[$i]->getVar('conf_name'), $obj[$i]->getConfValueForOutput()); |