* @license GPLv2 http://files.syscp.org/misc/COPYING.txt * @package Functions * @version $Id$ */ function getFormFieldOutputBool($fieldname, $fielddata) { $label = $fielddata['label']; $boolswitch = makeYesNo($fieldname, '1', '0', $fielddata['value']); eval("\$returnvalue = \"" . getTemplate("formfields/bool", true) . "\";"); return $returnvalue; }