1: <?php
2: /**
3: * PHP version 5
4: * @package generalDriver
5: * @author Christian Schiffler <c.schiffler@cyberspectrum.de>
6: * @author Stefan Heimes <stefan_heimes@hotmail.com>
7: * @author Tristan Lins <tristan.lins@bit3.de>
8: * @copyright The MetaModels team.
9: * @license LGPL.
10: * @filesource
11: */
12:
13: namespace DcGeneral\DataDefinition\Definition\View;
14:
15: /**
16: * This interface describes a panel layout definition.
17: *
18: * @package DcGeneral\DataDefinition\Definition\View
19: */
20: interface PanelLayoutInterface
21: {
22: /**
23: * Return rows of panel elements.
24: *
25: * @return PanelRowCollectionInterface
26: */
27: public function getRows();
28: }
29: