Page::getDescription()

Version 4

Row additional description text

Return the additional description of the row.

Return value

String

Example

Show order additional info:

$desc = $this->get('page', 'order', $id)->getDescription();

Full documentation

Show title and description of all new orders:

foreach ( $this->get('pages','order')->addWhere('status','New') as $Order ){
    $txt .= "<h2>{$Order->getTitle()}</h2><p>{$Order->getDescription()}</p>";
}