BcBaserHelper::setTitle PHP Method

setTitle() public method

タイトルを設定する
public setTitle ( string $title, mixed $categoryTitleOn = null ) : void
$title string タイトル
$categoryTitleOn mixed カテゴリのタイトルを含むかどうか
return void
    public function setTitle($title, $categoryTitleOn = null)
    {
        if (!is_null($categoryTitleOn)) {
            $this->_categoryTitleOn = $categoryTitleOn;
        }
        $this->_View->pageTitle = $title;
    }