CakePHP - How do i set the page title to an item name?

后端 未结 10 833
囚心锁ツ
囚心锁ツ 2021-01-03 02:13

OK, so I\'m trying to teach myself the CakePHP framework, and I\'m trying to knock up a simple demo app for myself.

I have the controllers, views and models all set

10条回答
  •  清酒与你
    2021-01-03 02:41

    As of CakePHP 1.3, setting page title has been changed.

    $this->pageTitle = "Title"; //deprecated
    
    $this->set("title_for_layout",Inflector::humanize($this->name)); // new way of setting title
    

    Note: More about Inflector: http://api13.cakephp.org/class/inflector#method-Inflector

提交回复
热议问题