public function DynamicLayout::getRows in Dynamic Layouts 8
Get the unserialized rows.
Overrides DynamicLayoutInterface::getRows
13 calls to DynamicLayout::getRows()
- DynamicLayout::addColumn in src/
Entity/ DynamicLayout.php - Add a column to a row.
- DynamicLayout::addRow in src/
Entity/ DynamicLayout.php - Add a row to the layout.
- DynamicLayout::deleteColumn in src/
Entity/ DynamicLayout.php - Delete a specific column from the layout.
- DynamicLayout::deleteRow in src/
Entity/ DynamicLayout.php - Delete a specific row from the layout.
- DynamicLayout::getIconMap in src/
Entity/ DynamicLayout.php - Get the icon map for this layout.
File
- src/
Entity/ DynamicLayout.php, line 702
Class
- DynamicLayout
- Defines the DynamicLayout entity.
Namespace
Drupal\dynamic_layouts\EntityCode
public function getRows() {
return unserialize($this->regions);
}