本文整理匯總了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;
}