コード例 #1
0
ファイル: j2html.php プロジェクト: davetheapple/oakencraft
 public static function booleanlist($name, $attribs = array(), $selected = null, $yes = 'JYES', $no = 'JNO', $id = false)
 {
     $arr = array(JHtml::_('select.option', '0', JText::_($no)), JHtml::_('select.option', '1', JText::_($yes)));
     return J2Html::radiolist($arr, $name, $attribs, 'value', 'text', (int) $selected, $id);
 }