- added new server_id parameter to buildFormEx, so getFormGroupOutput will use the correct template (with correct links)
97 lines
2.7 KiB
PHP
97 lines
2.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of the Froxlor project.
|
|
* Copyright (c) 2003-2009 the SysCP Team (see authors).
|
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
|
*
|
|
* For the full copyright and license information, please view the COPYING
|
|
* file that was distributed with this source code. You can also view the
|
|
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
|
*
|
|
* @copyright (c) the authors
|
|
* @author Florian Lippert <flo@syscp.org> (2003-2009)
|
|
* @author Froxlor team <team@froxlor.org> (2010-)
|
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
|
* @package Functions
|
|
* @version $Id$
|
|
*/
|
|
|
|
function getFormGroupOutput($groupname, $groupdetails)
|
|
{
|
|
global $lng;
|
|
eval("\$group = \"" . getTemplate("settings/settings_group") . "\";");
|
|
return $group;
|
|
}
|
|
|
|
function getFormOverviewGroupOutput($groupname, $groupdetails, $server_id = 0)
|
|
{
|
|
global $lng, $settings, $filename, $s;
|
|
|
|
$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[$fielddetails['settinggroup']][$fielddetails['varname']]);
|
|
}
|
|
$option.= $fielddetails['label'].': ';
|
|
$option.= '<select class="dropdown_noborder" name="'.$fieldname.'">';
|
|
$option.= $options;
|
|
$option.= '</select>';
|
|
$activated = true;
|
|
}
|
|
else
|
|
{
|
|
if(isset($fielddetails['disabled']) && $fielddetails['disabled'] == true)
|
|
{
|
|
$d = true;
|
|
$option.='<span class="strikethrough">';
|
|
} else {
|
|
$d = false;
|
|
}
|
|
$option.= $lng['admin']['activated'].': ';
|
|
$option.= makeyesno($fieldname, '1', '0', $settings[$fielddetails['settinggroup']][$fielddetails['varname']], $d);
|
|
if($d) {
|
|
$option.='</span>';
|
|
}
|
|
$activated = (int)$settings[$fielddetails['settinggroup']][$fielddetails['varname']];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// if the server_id is > 0 then
|
|
// this is a client-settings page
|
|
// and we need another template
|
|
if($server_id > 0)
|
|
{
|
|
eval("\$group = \"" . getTemplate("froxlorclients/froxlorclient_settingsoverviewgroup") . "\";");
|
|
}
|
|
else
|
|
{
|
|
eval("\$group = \"" . getTemplate("settings/settings_overviewgroup") . "\";");
|
|
}
|
|
return $group;
|
|
}
|