*/ namespace Magento\Framework\Data\Form\Element; use Magento\Framework\Escaper; class Link extends AbstractElement { /** * @param Factory $factoryElement * @param CollectionFactory $factoryCollection * @param Escaper $escaper * @param array $data */ public function __construct( Factory $factoryElement, CollectionFactory $factoryCollection, Escaper $escaper, $data = [] ) { parent::__construct($factoryElement, $factoryCollection, $escaper, $data); $this->setType('link'); } /** * Generates element html * * @return string */ public function getElementHtml() { $html = $this->getBeforeElementHtml() . 'serialize( $this->getHtmlAttributes() ) . $this->_getUiId() . '>' . $this->getEscapedValue() . "\n" . $this->getAfterElementHtml(); return $html; } /** * Prepare array of anchor attributes * * @return string[] */ public function getHtmlAttributes() { return [ 'charset', 'coords', 'href', 'hreflang', 'rel', 'rev', 'name', 'shape', 'target', 'accesskey', 'class', 'dir', 'lang', 'style', 'tabindex', 'title', 'xml:lang', 'onblur', 'onclick', 'ondblclick', 'onfocus', 'onmousedown', 'onmousemove', 'onmouseout', 'onmouseover', 'onmouseup', 'onkeydown', 'onkeypress', 'onkeyup', 'data-role', 'data-action' ]; } }