| Current Path : /home/rtorresani/www/vendor/magento/framework/View/Element/UiComponent/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/View/Element/UiComponent/LayoutInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\View\Element\UiComponent;
use Magento\Framework\View\Element\UiComponentInterface;
/**
* Interface LayoutInterface
*
* @api
*/
interface LayoutInterface
{
const SECTIONS_KEY = 'sections';
const AREAS_KEY = 'areas';
const GROUPS_KEY = 'groups';
const ELEMENTS_KEY = 'elements';
const DATA_SOURCE_KEY = 'data_source';
/**
* @param UiComponentInterface $component
* @return array
*/
public function build(UiComponentInterface $component);
}