public function getFieldId() { if ($this->_getData('field_id') === null) { if (!is_object($this->getChild(self::CHILD_BLOCK_NAME_INPUT_FIELD)) || !($fieldId = $this->getChild(self::CHILD_BLOCK_NAME_INPUT_FIELD)->getFieldId())) { $fieldId = parent::getFieldId(); } $this->setData('field_id', $fieldId); } return $this->_getData('field_id'); }
protected function _beforeToHtml() { $this->addFieldClass(self::CLASS_NAME_SELECT); return parent::_beforeToHtml(); }
protected function _beforeToHtml() { $this->addFieldClass(self::CLASS_NAME_VALIDATE_NUMBER); return Mageplace_Freshdesk_Block_Field_Abstract::_beforeToHtml(); }
public function _construct() { $this->setTemplate('freshdesk/field/date.phtml'); parent::_construct(); }