本文整理汇总了PHP中Varien_Data_Form_Element_Abstract::getSeparator方法的典型用法代码示例。如果您正苦于以下问题:PHP Varien_Data_Form_Element_Abstract::getSeparator方法的具体用法?PHP Varien_Data_Form_Element_Abstract::getSeparator怎么用?PHP Varien_Data_Form_Element_Abstract::getSeparator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Varien_Data_Form_Element_Abstract
的用法示例。
在下文中一共展示了Varien_Data_Form_Element_Abstract::getSeparator方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _optionToHtml
/**
* Override method to output wrapper
*
* @param Varien_Data_Form_Element_Abstract $element
* @param Array $option
* @param String $selected
* @return String
*/
protected function _optionToHtml($element, $option, $selected)
{
$float = $option['value'] == 'fixed' ? 'right' : 'left';
$html = '<div class="' . $float . ' a-center">';
$html .= '<img src="' . Mage::getDesign()->getSkinUrl('images/magik/lamby/appearance_width_' . $option['value'] . '.jpg') . '" alt="" /><br/>';
$html .= '<input type="radio"' . $element->serialize(array('name', 'class', 'style'));
if (is_array($option)) {
$html .= 'value="' . htmlspecialchars($option['value'], ENT_COMPAT) . '" id="' . $element->getHtmlId() . $option['value'] . '"';
if ($option['value'] == $selected) {
$html .= ' checked="checked"';
}
$html .= ' />';
$html .= '<label class="inline" for="' . $element->getHtmlId() . $option['value'] . '"> ' . $option['label'] . '</label>';
} elseif ($option instanceof Varien_Object) {
$html .= 'id="' . $element->getHtmlId() . $option->getValue() . '"' . $option->serialize(array('label', 'title', 'value', 'class', 'style'));
if (in_array($option->getValue(), $selected)) {
$html .= ' checked="checked"';
}
$html .= ' />';
$html .= '<label class="inline" for="' . $element->getHtmlId() . $option->getValue() . '">' . $option->getLabel() . '</label>';
}
$html .= '</div>';
$html .= $element->getSeparator() . "\n";
return $html;
}
示例2: _optionToHtml
/**
* Override method to output wrapper
*
* @param Varien_Data_Form_Element_Abstract $element
* @param Array $option
* @param String $selected
* @return String
*/
protected function _optionToHtml($element, $option, $selected)
{
$html = '<div class="left a-center meigee-radio">';
$html .= '<div class="meigee-thumb"></div>';
if (is_array($option)) {
$html .= '<label class="inline" for="' . $element->getHtmlId() . $option['value'] . '"><i class="fa ' . $option['label'] . '"></i></label>';
} elseif ($option instanceof Varien_Object) {
$html .= '<label class="inline" for="' . $element->getHtmlId() . $option->getValue() . '"><i class="fa ' . $option->getLabel() . '"></i></label>';
}
$html .= '<input type="radio"' . $element->serialize(array('name', 'class', 'style'));
if (is_array($option)) {
$html .= 'value="' . htmlspecialchars($option['value'], ENT_COMPAT) . '" id="' . $element->getHtmlId() . $option['value'] . '"';
if ($option['value'] == $selected) {
$html .= ' checked="checked"';
}
$html .= ' />';
} elseif ($option instanceof Varien_Object) {
$html .= 'id="' . $element->getHtmlId() . $option->getValue() . '"' . $option->serialize(array('label', 'title', 'value', 'class', 'style'));
if (in_array($option->getValue(), $selected)) {
$html .= ' checked="checked"';
}
$html .= ' />';
}
$html .= '</div>';
$html .= $element->getSeparator() . "\n";
return $html;
}
示例3: _optionToHtml
/**
* Override method to output wrapper
*
* @param Varien_Data_Form_Element_Abstract $element
* @param Array $option
* @param String $selected
* @return String
*/
protected function _optionToHtml($element, $option, $selected)
{
$float = $option['value'] == 'light' ? 'right' : 'left';
$html = '<div class="' . $float . ' a-center meigee-radio">';
$html .= '<div class="meigee-thumb" style="background:url(' . Mage::getDesign()->getSkinUrl('images/paterns/' . $option['value'] . '.png') . ') 0 0 repeat;"></div>';
$html .= '<input type="radio"' . $element->serialize(array('name', 'class', 'style'));
if (is_array($option)) {
$html .= 'value="' . htmlspecialchars($option['value'], ENT_COMPAT) . '" id="' . $element->getHtmlId() . $option['value'] . '"';
if ($option['value'] == $selected) {
$html .= ' checked="checked"';
}
$html .= ' />';
} elseif ($option instanceof Varien_Object) {
$html .= 'id="' . $element->getHtmlId() . $option->getValue() . '"' . $option->serialize(array('label', 'title', 'value', 'class', 'style'));
if (in_array($option->getValue(), $selected)) {
$html .= ' checked="checked"';
}
$html .= ' />';
}
$html .= '</div>';
$html .= $element->getSeparator() . "\n";
return $html;
}