CommonDBTM::getRawName PHP Method

getRawName() public method

Get raw name of the object Maybe overloaded
See also: CommonDBTM::getNameField
public getRawName ( )
    function getRawName()
    {
        if (isset($this->fields[static::getNameField()])) {
            return $this->fields[static::getNameField()];
        }
        return '';
    }
CommonDBTM