Pimcore\Model\Object\Person::getFirstname PHP Method

getFirstname() public method

Get firstname - Firstname
public getFirstname ( ) : string
return string
    public function getFirstname()
    {
        $preValue = $this->preGetValue("firstname");
        if ($preValue !== null && !\Pimcore::inAdmin()) {
            return $preValue;
        }
        $data = $this->firstname;
        return $data;
    }