From 2.5 Migration Guide:
$title_for_layout
is deprecated. Use$this->fetch('title');
and$this->assign('title', 'your-page-title');
instead.
They work in Views, but what to do in Controller? Using $this->assign()
throws Fatal error.
Use
$this->set('title_for_layout', 'List User');
inside controller.