BcBaserHelper::setHomeTitle PHP Method

setHomeTitle() public method

トップページのタイトルをセットする
public setHomeTitle ( $title = null )
$title
    public function setHomeTitle($title = null)
    {
        if (!$title) {
            $crumbs = $this->getCrumbs();
            if ($crumbs) {
                $crumbs = array_reverse($crumbs);
                $title = $crumbs[0]['name'];
            }
        }
        $this->_View->set('homeTitle', $title);
    }