public function __construct() { wfProfileIn('BS::' . __METHOD__); parent::__construct('WikiAdmin', 'wikiadmin'); // SpecialPage($name, $restriction) wfProfileOut('BS::' . __METHOD__); }
/** * The default contructor of the SpecialUniversalExport class */ function __construct() { parent::__construct('UniversalExport', 'universalexport-export', true); $this->oOutputPage = $this->getOutput(); //Set up default parameters and metadata $this->aParams = BsConfig::get('MW::UniversalExport::ParamsDefaults'); $this->aParams['webroot-filesystempath'] = BsCore::getMediaWikiWebrootPath(); $this->aMetadata = FormatJson::decode(BsConfig::get('MW::UniversalExport::MetadataDefaults'), true); //Set up Black- and Whitelists $this->aCategoryWhitelist = BsConfig::get('MW::UniversalExport::CategoryWhitelist'); $this->aCategoryBlacklist = BsConfig::get('MW::UniversalExport::CategoryBlacklist'); }
/** * Constructor of SpecialExtendedStatistics */ public function __construct() { parent::__construct('ExtendedStatistics', 'read', true); }
/** * Constructor of SpecialReview class */ public function __construct() { wfProfileIn('BS::' . __METHOD__); parent::__construct('Review', 'workflowview'); wfProfileOut('BS::' . __METHOD__); }
public function __construct() { parent::__construct('Readers', 'viewreaders', false); }
public function __construct($name = '', $restriction = '', $listed = true, $function = false, $file = 'default', $includable = false) { parent::__construct('AdminDashboard', 'wikiadmin'); }
public function __construct() { parent::__construct('ExtensionInfo', 'wikiadmin'); }
public function __construct() { parent::__construct('RSSFeeder'); }
public function __construct() { parent::__construct('PageAccess'); }
/** * Constructor of SpecialExtendedSearch class */ public function __construct() { parent::__construct('SpecialExtendedSearch'); }
public function __construct() { parent::__construct('ResponsibleEditors', 'responsibleeditors-viewspecialpage'); }