static function ( MediaWikiServices $services ) { return $services->getService( 'ConfigFactory' )->makeConfig( Constants::SKIN_NAME ); }, Constants::SERVICE_FEATURE_MANAGER => static function ( MediaWikiServices $services ) { $featureManager = new FeatureManager(); $featureManager->registerRequirement( new DynamicConfigRequirement( $services->getMainConfig(), Constants::CONFIG_KEY_FULLY_INITIALISED, Constants::REQUIREMENT_FULLY_INITIALISED ) ); // Feature: Latest skin // ==================== $context = RequestContext::getMain(); $featureManager->registerRequirement( new LatestSkinVersionRequirement( new SkinVersionLookup( $context->getRequest(), $context->getUser(), $services->getService( Constants::SERVICE_CONFIG ) ) ) ); $featureManager->registerFeature( Constants::FEATURE_LATEST_SKIN, [ Constants::REQUIREMENT_FULLY_INITIALISED, Constants::REQUIREMENT_LATEST_SKIN_VERSION, ] ); // Feature: Languages in sidebar // ================================ $featureManager->registerRequirement( new OverridableConfigRequirement( $services->getMainConfig(), $context->getUser(), $context->getRequest(), CentralIdLookup::factoryNonLocal(), Constants::CONFIG_KEY_LANGUAGE_IN_HEADER, Constants::REQUIREMENT_LANGUAGE_IN_HEADER, Constants::QUERY_PARAM_LANGUAGE_IN_HEADER, Constants::CONFIG_LANGUAGE_IN_HEADER_TREATMENT_AB_TEST ) ); $featureManager->registerFeature( Constants::FEATURE_LANGUAGE_IN_HEADER, [ Constants::REQUIREMENT_FULLY_INITIALISED, Constants::REQUIREMENT_LATEST_SKIN_VERSION, Constants::REQUIREMENT_LANGUAGE_IN_HEADER, ] ); // Feature: Use Wvui Search // ================================ $featureManager->registerRequirement( new WvuiSearchTreatmentRequirement( $services->getMainConfig(), $context->getUser() ) ); $featureManager->registerFeature( Constants::FEATURE_USE_WVUI_SEARCH, [ Constants::REQUIREMENT_FULLY_INITIALISED, Constants::REQUIREMENT_LATEST_SKIN_VERSION, Constants::REQUIREMENT_USE_WVUI_SEARCH ] ); // Feature: Consolidate personal menu links // ================================ $featureManager->registerRequirement( new OverridableConfigRequirement( $services->getMainConfig(), $context->getUser(), $context->getRequest(), null, Constants::CONFIG_CONSOLIDATE_USER_LINKS, Constants::REQUIREMENT_CONSOLIDATE_USER_LINKS, Constants::QUERY_PARAM_CONSOLIDATE_USER_LINKS, null ) ); $featureManager->registerFeature( Constants::FEATURE_CONSOLIDATE_USER_LINKS, [ Constants::REQUIREMENT_FULLY_INITIALISED, Constants::REQUIREMENT_LATEST_SKIN_VERSION, Constants::REQUIREMENT_CONSOLIDATE_USER_LINKS ] ); // Temporary T286932 - remove after languages A/B test is finished. if ( $context->getUser()->isRegistered() ) { $bucket = 'vector.language_test_' . ( $featureManager->isFeatureEnabled( Constants::FEATURE_CONSOLIDATE_USER_LINKS ) ? 'a' : 'b' ); $services->getStatsdDataFactory()->increment( $bucket ); } return $featureManager; } ];