Pimcore\Model\Object\Inquiry::getTerms PHP Method

getTerms() public method

Get terms - Terms of Use
public getTerms ( ) : boolean
return boolean
    public function getTerms()
    {
        $preValue = $this->preGetValue("terms");
        if ($preValue !== null && !\Pimcore::inAdmin()) {
            return $preValue;
        }
        $data = $this->terms;
        return $data;
    }