Backend\Core\Engine\Meta::getKeywords PHP Метод

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

Get the current value for the meta-keywords;
public getKeywords ( ) : mixed
Результат mixed
    public function getKeywords()
    {
        // not set so return null
        if (!isset($this->data['keywords'])) {
            return;
        }
        // return value
        return $this->data['keywords'];
    }