本文整理汇总了PHP中Zend_Form_Element_Radio::getMultiOptions方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Form_Element_Radio::getMultiOptions方法的具体用法?PHP Zend_Form_Element_Radio::getMultiOptions怎么用?PHP Zend_Form_Element_Radio::getMultiOptions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Form_Element_Radio
的用法示例。
在下文中一共展示了Zend_Form_Element_Radio::getMultiOptions方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: simpleRadio
/**
* Helper function for generating simple radio button HTML fragments
*
* @param Zend_Form_Element_Radio $element
* @param string $cssEtc optional attribute string for <input> tags
* @param string $wrapInputHtml optional HTML that wraps each <input>, split by an asterisk
* @param string $wrapLabelHtml optional HTML that wraps each <label>, split by an asterisk
*
* @return string
*/
public function simpleRadio($element, $cssEtc = '', $wrapInputHtml = '', $wrapLabelHtml = '')
{
$wrapInputHtmlStart = $wrapInputHtmlEnd = $wrapLabelHtmlStart = $wrapLabelHtmlEnd = '';
if (strpos($wrapInputHtml, '*') !== false) {
list($wrapInputHtmlStart, $wrapInputHtmlEnd) = explode('*', $wrapInputHtml);
}
if (strpos($wrapLabelHtml, '*') !== false) {
list($wrapLabelHtmlStart, $wrapLabelHtmlEnd) = explode('*', $wrapLabelHtml);
}
$output = '';
$options = $element->getMultiOptions();
foreach ($options as $key => $val) {
$output .= sprintf("%s<input type=\"radio\" name=\"%s\" id=\"%s\" value=\"%s\" %s%s/>%s<label for=\"%s\">%s</label>%s%s\n", $wrapInputHtmlStart, $element->getName(), $element->getId() . '-' . $key, $key, (string) $key == (string) $element->getValue() && $key !== '' ? ' checked="checked"' : '', $cssEtc != '' ? " {$cssEtc}" : '', $wrapLabelHtmlStart, $element->getId() . '-' . $key, $val, $wrapLabelHtmlEnd, $wrapInputHtmlEnd);
}
return $output;
}