diff --git a/bricks.xml b/bricks.xml index e7767784b25ae63ed6d2632535f6a524c7b34124..c5071dd94f74f53541c9dfcf1d7462f13ab4a59f 100644 --- a/bricks.xml +++ b/bricks.xml @@ -969,6 +969,9 @@ <option value="authorTop"> <locale group="quiqqer/bricks" var="brick.listTemplate.authorTop"/> </option> + <option value="grid3x3"> + <locale group="quiqqer/bricks" var="brick.listTemplate.grid3x3"/> + </option> </setting> <setting name="max" type="number"> @@ -1004,6 +1007,11 @@ var="brick.showTime"/> </setting> + <setting name="showSheets" type="checkbox"> + <locale group="quiqqer/bricks" + var="brick.showSheets"/> + </setting> + </settings> </brick> diff --git a/src/QUI/Bricks/Controls/Children/Listing.html b/src/QUI/Bricks/Controls/Children/Listing.html index 78cd252723defce9d939e5f2e2ccb8e70d8813fa..6675a32abba1f8ba8d2d4feb6cc72bf36b89ed71 100644 --- a/src/QUI/Bricks/Controls/Children/Listing.html +++ b/src/QUI/Bricks/Controls/Children/Listing.html @@ -1,3 +1 @@ -<!-- @ToDo Seitenliste. Genau wie Seitentyps --> - {$ChildrenList->create()} \ No newline at end of file diff --git a/src/QUI/Bricks/Controls/Children/Listing.php b/src/QUI/Bricks/Controls/Children/Listing.php index f510555f0faacf665c8dbfd3454b91ffa4d4aba4..24039f2ee8a696c5c80d0ea7a4b7ee4a45ff9eda 100644 --- a/src/QUI/Bricks/Controls/Children/Listing.php +++ b/src/QUI/Bricks/Controls/Children/Listing.php @@ -59,6 +59,7 @@ public function getBody() $Control->setAttribute('display', $this->getAttribute('template')); $Control->setAttribute('limit', $this->getAttribute('max')); $Control->setAttribute('showShort', $this->getAttribute('showShort')); + $Control->setAttribute('showSheets', $this->getAttribute('showSheets')); $Control->setAttribute('showImages', $this->getAttribute('showImages')); $Control->setAttribute('showTime', $this->getAttribute('showTime')); $Control->setAttribute('showDate', $this->getAttribute('showDate'));