NetworkPort_Vlan::getRelationMassiveActionsSpecificities PHP Method

getRelationMassiveActionsSpecificities() static public method

See also: CommonDBRelation::getRelationMassiveActionsSpecificities()
    static function getRelationMassiveActionsSpecificities()
    {
        global $CFG_GLPI;
        $specificities = parent::getRelationMassiveActionsSpecificities();
        // Set the labels for add_item and remove_item
        $specificities['button_labels']['add'] = _sx('button', 'Associate');
        $specificities['button_labels']['remove'] = _sx('button', 'Dissociate');
        return $specificities;
    }