How to change page title in CakePHP 2.5?

mrdaliri picture mrdaliri · Oct 13, 2014 · Viewed 11.9k times · Source

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.

Answer

Pratik picture Pratik · Oct 13, 2014

Use

$this->set('title_for_layout', 'List User');

inside controller.