(2003-2009) * @author Froxlor team (2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Functions * */ function getFormFieldOutputHidden($fieldname, $fielddata) { $returnvalue = ''; if(isset($fielddata['label']) && $fielddata['label'] != '') { $label = $fielddata['label']; $value = htmlentities($fielddata['value']); eval("\$returnvalue .= \"" . \Froxlor\UI\Template::getTemplate("formfields/hidden", true) . "\";"); } return $returnvalue; }