* @license GPLv2 http://files.syscp.org/misc/COPYING.txt * @package Functions * @version $Id: function.makeyesno.php 2724 2009-06-07 14:18:02Z flo $ */ /** * Returns HTML Code for two radio buttons with two choices: yes and no * * @param string Name of HTML-Variable * @param string Value which will be returned if user chooses yes * @param string Value which will be returned if user chooses no * @param string Value which is chosen by default * @return string HTML Code * @author Florian Lippert */ function makeyesno($name, $yesvalue, $novalue = '', $yesselected = '') { global $lng; return ''; }