Pimcore\Model\Object\BlogArticle::setTags PHP 메소드

setTags() 공개 메소드

Set tags - Tags
public setTags ( string $tags, $language = null ) : BlogArticle
$tags string
리턴 BlogArticle
    public function setTags($tags, $language = null)
    {
        $this->getLocalizedfields()->setLocalizedValue("tags", $tags, $language);
        return $this;
    }