Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
LayoutInterface.php
Go to the documentation of this file.
1 <?php
7 
9 
13 interface LayoutInterface
14 {
15  const SECTIONS_KEY = 'sections';
16 
17  const AREAS_KEY = 'areas';
18 
19  const GROUPS_KEY = 'groups';
20 
21  const ELEMENTS_KEY = 'elements';
22 
23  const DATA_SOURCE_KEY = 'data_source';
24 
29  public function build(UiComponentInterface $component);
30 }