20 'AllowCategorizedRecentChanges' =>
false,
24 'AllowCategorizedRecentChanges' =>
true,
35 self::$main->getContext()->setLanguage(
'en' );
36 self::$main->getContext()->setTitle(
50 $this->assertInstanceOf(
'Message', $msg,
"$what message" );
51 $this->assertTrue( $msg->exists(),
"$what message {$msg->getKey()} exists" );
60 $main = self::getMain();
67 foreach ( $globals
as $k => $v ) {
75 foreach ( $module->getHelpFlags()
as $flag ) {
76 $this->
checkMessage(
"api-help-flag-$flag",
"Flag $flag" );
80 $this->
checkMessage( $module->getDescriptionMessage(),
'Module description' );
85 foreach ( $params
as $name => $settings ) {
86 if ( !is_array( $settings ) ) {
94 $msg =
"apihelp-{$path}-param-{$name}";
96 $this->
checkMessage( $msg,
"Parameter $name description" );
100 $this->assertInternalType(
'array', $settings[ApiBase::PARAM_HELP_MSG_PER_VALUE],
101 "Parameter $name PARAM_HELP_MSG_PER_VALUE is array" );
103 "Parameter $name PARAM_TYPE is array for msg-per-value mode" );
105 foreach ( $settings[ApiBase::PARAM_TYPE]
as $value ) {
106 if ( isset( $valueMsgs[$value] ) ) {
107 $msg = $valueMsgs[
$value];
109 $msg =
"apihelp-{$path}-paramvalue-{$name}-{$value}";
111 $this->
checkMessage( $msg,
"Parameter $name value $value" );
117 $this->assertInternalType(
'array', $settings[ApiBase::PARAM_HELP_MSG_APPEND],
118 "Parameter $name PARAM_HELP_MSG_APPEND is array" );
119 foreach ( $settings[ApiBase::PARAM_HELP_MSG_APPEND]
as $i => $msg ) {
120 $this->
checkMessage( $msg,
"Parameter $name HELP_MSG_APPEND #$i" );
127 foreach ( $settings[ApiBase::PARAM_HELP_MSG_INFO]
as $i ) {
128 $tags[array_shift( $i )] = 1;
134 foreach ( $tags
as $tag => $dummy ) {
135 $this->
checkMessage(
"apihelp-{$path}-paraminfo-{$tag}",
"HELP_MSG_INFO tag $tag" );
139 foreach ( $module->getExamplesMessages()
as $qs => $msg ) {
145 $main = self::getMain();
151 foreach ( self::$testGlobals
as $globals ) {
153 foreach ( $globals
as $k => $v ) {
154 $g[] =
"$k=" . var_export( $v, 1 );
156 $k =
"Module $path with " . implode(
', ', $g );
157 $ret[$k] = [
$path, $globals ];
172 $paths[] = $module->getModulePath();
173 $subManager = $module->getModuleManager();
175 $paths = array_merge( $paths, self::getSubModulePaths( $subManager ) );
getModuleManager()
Overrides to return this instance's module manager.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below...
the array() calling protocol came about after MediaWiki 1.4rc1.
This class holds a list of modules and handles instantiation.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
const GET_VALUES_FOR_HELP
getAllowedParams() flag: When set, the result could take longer to generate, but should be more thoro...
const PARAM_HELP_MSG_INFO
(array) Specify additional information tags for the parameter.
static makeMessage($msg, IContextSource $context, array $params=null)
Create a Message from a string or array.
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
static array $testGlobals
Sets of globals to test.
static getSubModulePaths(ApiModuleManager $manager)
Return paths of all submodules in an ApiModuleManager, recursively.
getModule($moduleName, $group=null, $ignoreCache=false)
Get module instance by name, or instantiate it if it does not exist.
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
static getMain()
Static methods.
getModulePath()
Get the path to this module.
getContext()
Get the base IContextSource object.
static provideDocumentationExists()
This is the main API class, used for both external and internal processing.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books $tag
Provides a fallback sequence for Config objects.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter...
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Checks that all API modules, core and extensions, have documentation i18n messages.
checkMessage($msg, $what)
Test a message.
static array static getMain()
Initialize/fetch the ApiMain instance for testing.
static newFromObject($object)
Return the same object, without access restrictions.
testDocumentationExists($path, array $globals)
provideDocumentationExists
getNames($group=null)
Get an array of modules in a specific group or all if no group is set.
A Config instance which stores all settings as a member variable.
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
getModuleFromPath($path)
Get a module from its module path.
Allows to change the fields on the form that will be generated $name