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