*/ class Varien_Data_Form_Element_Label extends Varien_Data_Form_Element_Abstract { /** * Assigns attributes for Element * * @param array $attributes */ public function __construct($attributes=array()) { parent::__construct($attributes); $this->setType('label'); } /** * Retrieve Element HTML * * @return string */ public function getElementHtml() { $html = $this->getBold() ? '' : ''; $html.= $this->getEscapedValue(); $html.= $this->getBold() ? '' : ''; $html.= $this->getAfterElementHtml(); return $html; } }