You are here

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.

... See full list

File

src/Entity/DynamicLayout.php, line 702

Class

DynamicLayout
Defines the DynamicLayout entity.

Namespace

Drupal\dynamic_layouts\Entity

Code

public function getRows() {
  return unserialize($this->regions);
}