Page::getTitle()
Version 4
Row title text
Version 4
Row title text
Return the title of the row.
String
Show order title:
$title = $this->get('page','order',1001)->getTitle();
Show title of all new orders:
foreach ( $this->get('pages', 'order')->assWhere('status','New') as $Page ){
$txt .= "<h2>{$Page->getTitle()}</h2>";
}