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 LanguageInHeaderTreatmentRequirement( $services->getMainConfig(), $context->getUser(), $context->getRequest(), CentralIdLookup::factoryNonLocal() ) ); $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 ] ); return $featureManager; } ];