(2003-2009) * @author Froxlor team (2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Functions * */ function getFormGroupOutput($groupname, $groupdetails) { global $lng, $theme; eval("\$group = \"" . getTemplate("settings/settings_group") . "\";"); return $group; } function getFormOverviewGroupOutput($groupname, $groupdetails) { global $lng, $filename, $s, $theme; $group = ''; $title = $groupdetails['title']; $part = $groupname; $activated = true; $option = ''; if(isset($groupdetails['fields'])) { foreach($groupdetails['fields'] as $fieldname => $fielddetails) { if(isset($fielddetails['overview_option']) && $fielddetails['overview_option'] == true ) { if($fielddetails['type'] != 'option' && $fielddetails['type'] != 'bool') { standard_error('overviewsettingoptionisnotavalidfield'); } if($fielddetails['type'] == 'option') { $options_array = $fielddetails['option_options']; $options = ''; foreach($options_array as $value => $vtitle) { $options .= makeoption($vtitle, $value, Settings::Get($fielddetails['settinggroup'].'.'.$fielddetails['varname'])); } $option.= $fielddetails['label'].': '; $option.= ''; $activated = true; } else { $option.= $lng['admin']['activated'].': '; $option.= makeyesno($fieldname, '1', '0', Settings::Get($fielddetails['settinggroup'].'.'.$fielddetails['varname'])); $activated = (int)Settings::Get($fielddetails['settinggroup'].'.'.$fielddetails['varname']); } } } } /** * this part checks for the 'websrv_avail' entry in the settings * if found, we check if the current webserver is in the array. If this * is not the case, we change the setting type to "hidden", #502 */ $do_show = true; if (isset($groupdetails['websrv_avail']) && is_array($groupdetails['websrv_avail'])) { $websrv = Settings::Get('system.webserver'); if (!in_array($websrv, $groupdetails['websrv_avail'])) { $do_show = false; } } if ($do_show) { eval("\$group = \"" . getTemplate("settings/settings_overviewgroup") . "\";"); } return $group; }