Ich habe diese Hilfsklasse in Magento 2:
class Data extends \Magento\Framework\App\Helper\AbstractHelper
{
protected $_countryFactory;
public function __construct(
\Magento\Directory\Model\CountryFactory $countryFactory
)
{
$this->_countryFactory = $countryFactory;
}
public function getCountryIsoCode($country = 'US')
{
$country = $this->_countryFactory->create()->getCollection();
$country->addFieldToFilter('country_id', array('eq' => country));
$countryCode = $country->getFirstItem()->getIso3Code());
$countryCode2 = $country->getFirstItem()->getData('iso3_code'));
// $countryCode => null
// $countryCode2 => 'USA'
return $countryCode;
}
}
Die Funktion getCountryIsoCode () hat ein Beispiel als Parameter ('US').
Ich weiß nicht, warum getIso3Code () nicht funktioniert. Stattdessen funktioniert getData () einwandfrei.
In Magento2 gibt es keine "PHP Magic-Funktion zum Abrufen des Datenbanktabellenfelds" mehr?
Stimmt etwas in meinem Code nicht?