BcBaserHelper::getDescription PHP Method

getDescription() public method

meta タグ用のページ説明文を取得する
public getDescription ( ) : string
return string meta タグ用の説明文
    public function getDescription()
    {
        $description = $this->_View->get('description');
        if (!empty($description)) {
            return $description;
        }
        if (!empty($this->siteConfig['description'])) {
            return $this->siteConfig['description'];
        }
        return '';
    }