CommonDBTM::isPrivate PHP Method

isPrivate() public method

Is the object private
public isPrivate ( ) : boolean
return boolean
    function isPrivate()
    {
        if ($this->maybePrivate()) {
            return $this->fields["is_private"];
        }
        return false;
    }
CommonDBTM