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 '';
    }