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

getDescription() public method

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