*/ class Js extends \Magento\Backend\Block\Template { /** * Js template * * @var string */ protected $_template = 'Magento_Eav::attribute/edit/js.phtml'; /** * @var \Magento\Eav\Model\Adminhtml\System\Config\Source\Inputtype */ private $inputtype; /** * {@inheritdoc} */ public function __construct( \Magento\Backend\Block\Template\Context $context, \Magento\Eav\Model\Adminhtml\System\Config\Source\Inputtype $inputtype, array $data = [] ) { $this->inputtype = $inputtype; parent::__construct($context, $data); } /** * @deprecated 102.0.0 Misspelled method * @see getCompatibleInputTypes */ public function getComaptibleInputTypes() { return $this->getCompatibleInputTypes(); } /** * Get compatible input types. * * @return array */ public function getCompatibleInputTypes() { return $this->inputtype->getVolatileInputTypes(); } /** * Get hints on input types. * * @return array */ public function getInputTypeHints() { return $this->inputtype->getInputTypeHints(); } }