Page::getTitle()

Version 4

Row title text

Return the title of the row.

Return value

String

Example

Show order title:

$title = $this->get('page','order',1001)->getTitle();

Full documentation

Show title of all new orders:

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