CommonDBTM::isEntityForwardTo PHP Method

isEntityForwardTo() static public method

Is entity informations forward To ?
Since: 0.84
static public isEntityForwardTo ( $itemtype ) : boolean
$itemtype itemtype to check
return boolean
    static function isEntityForwardTo($itemtype)
    {
        if (in_array($itemtype, static::$forward_entity_to)) {
            return true;
        }
        //Fill forward_entity_to array with itemtypes coming from plugins
        if (isset(static::$plugins_forward_entity[static::getType()]) && in_array($itemtype, static::$plugins_forward_entity[static::getType()])) {
            return true;
        }
        return false;
    }
CommonDBTM