CommonDBTM::isEntityForwardTo PHP 메소드

isEntityForwardTo() 정적인 공개 메소드

Is entity informations forward To ?
부터: 0.84
static public isEntityForwardTo ( $itemtype ) : boolean
$itemtype itemtype to check
리턴 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