MediaWiki fundraising/REL1_35
WmfFramework.php
Go to the documentation of this file.
1<?php
2
3if ( !class_exists( 'WmfFramework' ) ) {
4 if ( defined( 'MEDIAWIKI' ) ) {
5 class_alias( WmfFramework_Mediawiki::class, 'WmfFramework', true );
6 } else {
7 require_once __DIR__ . '/Config.php';
8 require_once __DIR__ . '/DrupalFakeMwConfig.php';
9 class_alias( WmfFramework_Drupal::class, 'WmfFramework', true );
10 }
11}