12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Braintree\Block\Adminhtml\Form\Field;
- use Magento\Braintree\Helper\Country;
- use Magento\Framework\View\Element\Context;
- use Magento\Framework\View\Element\Html\Select;
- /**
- * Class Countries
- */
- class Countries extends Select
- {
- /**
- * @var Country
- */
- private $countryHelper;
- /**
- * Constructor
- *
- * @param Context $context
- * @param Country $countryHelper
- * @param array $data
- */
- public function __construct(Context $context, Country $countryHelper, array $data = [])
- {
- parent::__construct($context, $data);
- $this->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);
- }
- }
|