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
7 
13 
17 class Column extends AbstractComponent implements ColumnInterface
18 {
19  const NAME = 'column.massaction';
20 
26  protected $wrappedComponent;
27 
34 
43  public function __construct(
46  array $components = [],
47  array $data = []
48  ) {
49  $this->uiComponentFactory = $uiComponentFactory;
50  parent::__construct($context, $components, $data);
51  }
52 
58  public function getComponentName()
59  {
60  return static::NAME;
61  }
62 
69  public function prepareItems(array & $items)
70  {
71  return $items;
72  }
73 }
__construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, array $components=[], array $data=[])
Definition: Column.php:43
$items