BcBaserHelper::getKeywords PHP Метод

getKeywords() публичный Метод

meta タグ用のキーワードを取得する
public getKeywords ( ) : string
Результат string meta タグ用のキーワード
    public function getKeywords()
    {
        $keywords = $this->_View->get('keywords');
        if (!empty($keywords)) {
            return $keywords;
        }
        if (!empty($this->siteConfig['keyword'])) {
            return $this->siteConfig['keyword'];
        }
        return '';
    }