ListItem
An array of records or articles.
Classname
Photon\CmsEngine\Model\Element\ListItem
Attributes
Attribute | Type | Description |
---|---|---|
$title | string | The title of the list |
$items | array | Array of article or link objects that make up this list |
$type | string | The type of list, for example "record" or "article" |
<?php
use Photon\CmsEngine\Model\Element\ListItem;
$list = new ListItem();
$list->setType('record');
$list->setItems($records);