app\models\VendorContact::getDisplayName PHP Method

getDisplayName() public method

public getDisplayName ( ) : mixed | string
return mixed | string
    public function getDisplayName()
    {
        if ($this->getFullName()) {
            return $this->getFullName();
        } else {
            return $this->email;
        }
    }