Backend\Core\Engine\Meta::getKeywords PHP Method

getKeywords() public method

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