Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Column.php
Go to the documentation of this file.
1 <?php
13 
14 class Column extends \Magento\Framework\Data\Form\Element\AbstractElement
15 {
22  public function __construct(
23  \Magento\Framework\Data\Form\Element\Factory $factoryElement,
24  \Magento\Framework\Data\Form\Element\CollectionFactory $factoryCollection,
25  \Magento\Framework\Escaper $escaper,
26  $data = []
27  ) {
28  parent::__construct($factoryElement, $factoryCollection, $escaper, $data);
29  $this->setType('column');
30  }
31 }
__construct(\Magento\Framework\Data\Form\Element\Factory $factoryElement, \Magento\Framework\Data\Form\Element\CollectionFactory $factoryCollection, \Magento\Framework\Escaper $escaper, $data=[])
Definition: Column.php:22