countryHelper = $countryHelper; } /** * Render block HTML * * @return string */ protected function _toHtml() { if (!$this->getOptions()) { $this->setOptions($this->countryHelper->getCountries()); } return parent::_toHtml(); } /** * Sets name for input element * * @param string $value * @return $this */ public function setInputName($value) { return $this->setName($value); } }