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