Create a user.groups module in ResourceLoader, which bundles a CSS and JS page for...
[lhc/web/wiklou.git] / includes / resourceloader / ResourceLoaderUserGroupsModule.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @author Trevor Parscal
20 * @author Roan Kattouw
21 */
22
23 /**
24 * Module for user customizations
25 */
26 class ResourceLoaderUserGroupsModule extends ResourceLoaderWikiModule {
27
28 /* Protected Methods */
29 protected $origin = self::ORIGIN_USER_SITEWIDE;
30
31 protected function getPages( ResourceLoaderContext $context ) {
32 if ( $context->getUser() ) {
33 $user = User::newFromName( $context->getUser() );
34 if( $user instanceof User ){
35 $pages = array();
36 foreach( $user->getEffectiveGroups() as $group ){
37 if( in_array( $group, array( '*', 'user' ) ) ){
38 continue;
39 }
40 $g = ucfirst( $group );
41 $pages["MediaWiki:$g.js"] = array( 'type' => 'script' );
42 $pages["MediaWiki:$g.css"] = array( 'type' => 'style' );
43 }
44 return $pages;
45 }
46 }
47 return array();
48 }
49
50 /* Methods */
51
52 public function getGroup() {
53 return 'user';
54 }
55
56 public function getFlip( $context ) {
57 global $wgContLang;
58
59 return $wgContLang->getDir() !== $context->getDirection();
60 }
61 }