ページ コントローラ内からページ タイトル タグなどの変数を設定する場合のベスト プラクティスはどれですか?
私は持っている:
class About extends Controller {
public function Index()
{
$this->view->pageTitle = 'test 123' ;
$this->view->metaDescription = 'Description here' ;
$this->view->metaKeywords = 'dog, cat, monkey' ;
$this->view->render('about/about') ;
}
}
または、次のようなセッター関数を使用する必要があります。
$this->view->setPageTitle('My Title') ;