getConfig(); $user = $context->getUserObj(); if ( $user->isAnon() ) { return []; } // Use localised/normalised variant to ensure $excludepage matches $userPage = $user->getUserPage()->getPrefixedDBkey(); $pages = []; if ( $config->get( 'AllowUserCss' ) ) { $pages["$userPage/common.css"] = [ 'type' => 'style' ]; $pages["$userPage/" . $context->getSkin() . '.css'] = [ 'type' => 'style' ]; } // User group pages are maintained site-wide and enabled with site JS/CSS. if ( $config->get( 'UseSiteCss' ) ) { foreach ( $user->getEffectiveGroups() as $group ) { if ( $group == '*' ) { continue; } $pages["MediaWiki:Group-$group.css"] = [ 'type' => 'style' ]; } } // Hack for T28283: Allow excluding pages for preview on a CSS/JS page. // The excludepage parameter is set by OutputPage. $excludepage = $context->getRequest()->getVal( 'excludepage' ); if ( isset( $pages[$excludepage] ) ) { unset( $pages[$excludepage] ); } return $pages; } /** * @return string */ public function getType() { return self::LOAD_STYLES; } /** * Get group name * * @return string */ public function getGroup() { return 'user'; } }