5 * Created on Aug 29, 2014
7 * Copyright © 2014 Brad Jorsch <bjorsch@wikimedia.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
27 use HtmlFormatter\HtmlFormatter
;
30 * Class to output help for an API module
32 * @since 1.25 completely rewritten
35 class ApiHelp
extends ApiBase
{
36 public function execute() {
37 $params = $this->extractRequestParams();
40 foreach ( $params['modules'] as $path ) {
41 $modules[] = $this->getModuleFromPath( $path );
45 $context = new DerivativeContext( $this->getMain()->getContext() );
46 $context->setSkin( SkinFactory
::getDefaultInstance()->makeSkin( 'apioutput' ) );
47 $context->setLanguage( $this->getMain()->getLanguage() );
48 $context->setTitle( SpecialPage
::getTitleFor( 'ApiHelp' ) );
49 $out = new OutputPage( $context );
50 $out->setCopyrightUrl( 'https://www.mediawiki.org/wiki/Special:MyLanguage/Copyright' );
51 $context->setOutput( $out );
53 self
::getHelp( $context, $modules, $params );
55 // Grab the output from the skin
57 $context->getOutput()->output();
58 $html = ob_get_clean();
60 $result = $this->getResult();
61 if ( $params['wrap'] ) {
63 'mime' => 'text/html',
66 ApiResult
::setSubelementsList( $data, 'help' );
67 $result->addValue( null, $this->getModuleName(), $data );
70 $result->addValue( null, 'text', $html, ApiResult
::NO_SIZE_CHECK
);
71 $result->addValue( null, 'mime', 'text/html', ApiResult
::NO_SIZE_CHECK
);
76 * Generate help for the specified modules
78 * Help is placed into the OutputPage object returned by
79 * $context->getOutput().
81 * Recognized options include:
82 * - headerlevel: (int) Header tag level
83 * - nolead: (bool) Skip the inclusion of api-help-lead
84 * - noheader: (bool) Skip the inclusion of the top-level section headers
85 * - submodules: (bool) Include help for submodules of the current module
86 * - recursivesubmodules: (bool) Include help for submodules recursively
87 * - helptitle: (string) Title to link for additional modules' help. Should contain $1.
88 * - toc: (bool) Include a table of contents
90 * @param IContextSource $context
91 * @param ApiBase[]|ApiBase $modules
92 * @param array $options Formatting options (described above)
95 public static function getHelp( IContextSource
$context, $modules, array $options ) {
98 if ( !is_array( $modules ) ) {
99 $modules = [ $modules ];
102 $out = $context->getOutput();
103 $out->addModuleStyles( 'mediawiki.hlist' );
104 $out->addModuleStyles( 'mediawiki.apihelp' );
105 if ( !empty( $options['toc'] ) ) {
106 $out->addModules( 'mediawiki.toc' );
108 $out->setPageTitle( $context->msg( 'api-help-title' ) );
110 $cache = ObjectCache
::getMainWANInstance();
112 if ( count( $modules ) == 1 && $modules[0] instanceof ApiMain
&&
113 $options['recursivesubmodules'] && $context->getLanguage() === $wgContLang
115 $cacheHelpTimeout = $context->getConfig()->get( 'APICacheHelpTimeout' );
116 if ( $cacheHelpTimeout > 0 ) {
117 // Get help text from cache if present
118 $cacheKey = wfMemcKey( 'apihelp', $modules[0]->getModulePath(),
119 (int)!empty( $options['toc'] ),
120 str_replace( ' ', '_', SpecialVersion
::getVersion( 'nodb' ) ) );
121 $cached = $cache->get( $cacheKey );
123 $out->addHTML( $cached );
128 if ( $out->getHTML() !== '' ) {
129 // Don't save to cache, there's someone else's content in the page
134 $options['recursivesubmodules'] = !empty( $options['recursivesubmodules'] );
135 $options['submodules'] = $options['recursivesubmodules'] ||
!empty( $options['submodules'] );
138 if ( empty( $options['nolead'] ) ) {
139 $msg = $context->msg( 'api-help-lead' );
140 if ( !$msg->isDisabled() ) {
141 $out->addHTML( $msg->parseAsBlock() );
146 $html = self
::getHelpInternal( $context, $modules, $options, $haveModules );
147 if ( !empty( $options['toc'] ) && $haveModules ) {
148 $out->addHTML( Linker
::generateTOC( $haveModules, $context->getLanguage() ) );
150 $out->addHTML( $html );
152 $helptitle = isset( $options['helptitle'] ) ?
$options['helptitle'] : null;
153 $html = self
::fixHelpLinks( $out->getHTML(), $helptitle, $haveModules );
155 $out->addHTML( $html );
157 if ( $cacheKey !== null ) {
158 $cache->set( $cacheKey, $out->getHTML(), $cacheHelpTimeout );
163 * Replace Special:ApiHelp links with links to api.php
165 * @param string $html
166 * @param string|null $helptitle Title to link to rather than api.php, must contain '$1'
167 * @param array $localModules Keys are modules to link within the current page, values are ignored
170 public static function fixHelpLinks( $html, $helptitle = null, $localModules = [] ) {
171 $formatter = new HtmlFormatter( $html );
172 $doc = $formatter->getDoc();
173 $xpath = new DOMXPath( $doc );
174 $nodes = $xpath->query( '//a[@href][not(contains(@class,\'apihelp-linktrail\'))]' );
175 foreach ( $nodes as $node ) {
176 $href = $node->getAttribute( 'href' );
179 $href = rawurldecode( $href );
180 } while ( $old !== $href );
181 if ( preg_match( '!Special:ApiHelp/([^&/|#]+)((?:#.*)?)!', $href, $m ) ) {
182 if ( isset( $localModules[$m[1]] ) ) {
183 $href = $m[2] === '' ?
'#' . $m[1] : $m[2];
184 } elseif ( $helptitle !== null ) {
185 $href = Title
::newFromText( str_replace( '$1', $m[1], $helptitle ) . $m[2] )
188 $href = wfAppendQuery( wfScript( 'api' ), [
193 $node->setAttribute( 'href', $href );
194 $node->removeAttribute( 'title' );
198 return $formatter->getText();
202 * Wrap a message in HTML with a class.
204 * @param Message $msg
205 * @param string $class
209 private static function wrap( Message
$msg, $class, $tag = 'span' ) {
210 return Html
::rawElement( $tag, [ 'class' => $class ],
216 * Recursively-called function to actually construct the help
218 * @param IContextSource $context
219 * @param ApiBase[] $modules
220 * @param array $options
221 * @param array &$haveModules
224 private static function getHelpInternal( IContextSource
$context, array $modules,
225 array $options, &$haveModules
229 $level = empty( $options['headerlevel'] ) ?
2 : $options['headerlevel'];
230 if ( empty( $options['tocnumber'] ) ) {
231 $tocnumber = [ 2 => 0 ];
233 $tocnumber = &$options['tocnumber'];
236 foreach ( $modules as $module ) {
237 $tocnumber[$level]++
;
238 $path = $module->getModulePath();
239 $module->setContext( $context );
250 if ( empty( $options['noheader'] ) ||
!empty( $options['toc'] ) ) {
253 while ( isset( $haveModules[$anchor] ) ) {
254 $anchor = $path . '|' . ++
$i;
257 if ( $module->isMain() ) {
258 $headerContent = $context->msg( 'api-help-main-header' )->parse();
260 'class' => 'apihelp-header',
263 $name = $module->getModuleName();
264 $headerContent = $module->getParent()->getModuleManager()->getModuleGroup( $name ) .
266 if ( $module->getModulePrefix() !== '' ) {
267 $headerContent .= ' ' .
268 $context->msg( 'parentheses', $module->getModulePrefix() )->parse();
270 // Module names are always in English and not localized,
271 // so English language and direction must be set explicitly,
272 // otherwise parentheses will get broken in RTL wikis
274 'class' => 'apihelp-header apihelp-module-name',
280 $headerAttr['id'] = $anchor;
282 $haveModules[$anchor] = [
283 'toclevel' => count( $tocnumber ),
286 'line' => $headerContent,
287 'number' => implode( '.', $tocnumber ),
290 if ( empty( $options['noheader'] ) ) {
291 $help['header'] .= Html
::element(
292 'h' . min( 6, $level ),
298 $haveModules[$path] = true;
303 for ( $m = $module; $m !== null; $m = $m->getParent() ) {
304 $name = $m->getModuleName();
305 if ( $name === 'main_int' ) {
309 if ( count( $modules ) === 1 && $m === $modules[0] &&
310 !( !empty( $options['submodules'] ) && $m->getModuleManager() )
312 $link = Html
::element( 'b', null, $name );
314 $link = SpecialPage
::getTitleFor( 'ApiHelp', $m->getModulePath() )->getLocalURL();
315 $link = Html
::element( 'a',
316 [ 'href' => $link, 'class' => 'apihelp-linktrail' ],
321 array_unshift( $links, $link );
324 $help['header'] .= self
::wrap(
325 $context->msg( 'parentheses' )
326 ->rawParams( $context->getLanguage()->pipeList( $links ) ),
327 'apihelp-linktrail', 'div'
331 $flags = $module->getHelpFlags();
332 $help['flags'] .= Html
::openElement( 'div',
333 [ 'class' => 'apihelp-block apihelp-flags' ] );
334 $msg = $context->msg( 'api-help-flags' );
335 if ( !$msg->isDisabled() ) {
336 $help['flags'] .= self
::wrap(
337 $msg->numParams( count( $flags ) ), 'apihelp-block-head', 'div'
340 $help['flags'] .= Html
::openElement( 'ul' );
341 foreach ( $flags as $flag ) {
342 $help['flags'] .= Html
::rawElement( 'li', null,
343 self
::wrap( $context->msg( "api-help-flag-$flag" ), "apihelp-flag-$flag" )
346 $sourceInfo = $module->getModuleSourceInfo();
348 if ( isset( $sourceInfo['namemsg'] ) ) {
349 $extname = $context->msg( $sourceInfo['namemsg'] )->text();
351 $extname = $sourceInfo['name'];
353 $help['flags'] .= Html
::rawElement( 'li', null,
355 $context->msg( 'api-help-source', $extname, $sourceInfo['name'] ),
360 $link = SpecialPage
::getTitleFor( 'Version', 'License/' . $sourceInfo['name'] );
361 if ( isset( $sourceInfo['license-name'] ) ) {
362 $msg = $context->msg( 'api-help-license', $link, $sourceInfo['license-name'] );
363 } elseif ( SpecialVersion
::getExtLicenseFileName( dirname( $sourceInfo['path'] ) ) ) {
364 $msg = $context->msg( 'api-help-license-noname', $link );
366 $msg = $context->msg( 'api-help-license-unknown' );
368 $help['flags'] .= Html
::rawElement( 'li', null,
369 self
::wrap( $msg, 'apihelp-license' )
372 $help['flags'] .= Html
::rawElement( 'li', null,
373 self
::wrap( $context->msg( 'api-help-source-unknown' ), 'apihelp-source' )
375 $help['flags'] .= Html
::rawElement( 'li', null,
376 self
::wrap( $context->msg( 'api-help-license-unknown' ), 'apihelp-license' )
379 $help['flags'] .= Html
::closeElement( 'ul' );
380 $help['flags'] .= Html
::closeElement( 'div' );
382 foreach ( $module->getFinalDescription() as $msg ) {
383 $msg->setContext( $context );
384 $help['description'] .= $msg->parseAsBlock();
387 $urls = $module->getHelpUrls();
389 $help['help-urls'] .= Html
::openElement( 'div',
390 [ 'class' => 'apihelp-block apihelp-help-urls' ]
392 $msg = $context->msg( 'api-help-help-urls' );
393 if ( !$msg->isDisabled() ) {
394 $help['help-urls'] .= self
::wrap(
395 $msg->numParams( count( $urls ) ), 'apihelp-block-head', 'div'
398 if ( !is_array( $urls ) ) {
401 $help['help-urls'] .= Html
::openElement( 'ul' );
402 foreach ( $urls as $url ) {
403 $help['help-urls'] .= Html
::rawElement( 'li', null,
404 Html
::element( 'a', [ 'href' => $url ], $url )
407 $help['help-urls'] .= Html
::closeElement( 'ul' );
408 $help['help-urls'] .= Html
::closeElement( 'div' );
411 $params = $module->getFinalParams( ApiBase
::GET_VALUES_FOR_HELP
);
412 $dynamicParams = $module->dynamicParameterDocumentation();
414 if ( $params ||
$dynamicParams !== null ) {
415 $help['parameters'] .= Html
::openElement( 'div',
416 [ 'class' => 'apihelp-block apihelp-parameters' ]
418 $msg = $context->msg( 'api-help-parameters' );
419 if ( !$msg->isDisabled() ) {
420 $help['parameters'] .= self
::wrap(
421 $msg->numParams( count( $params ) ), 'apihelp-block-head', 'div'
424 $help['parameters'] .= Html
::openElement( 'dl' );
426 $descriptions = $module->getFinalParamDescription();
428 foreach ( $params as $name => $settings ) {
429 if ( !is_array( $settings ) ) {
430 $settings = [ ApiBase
::PARAM_DFLT
=> $settings ];
433 $help['parameters'] .= Html
::element( 'dt', null,
434 $module->encodeParamName( $name ) );
438 if ( isset( $descriptions[$name] ) ) {
439 foreach ( $descriptions[$name] as $msg ) {
440 $msg->setContext( $context );
441 $description[] = $msg->parseAsBlock();
449 if ( !empty( $settings[ApiBase
::PARAM_REQUIRED
] ) ) {
450 $info[] = $context->msg( 'api-help-param-required' )->parse();
454 if ( !empty( $settings[ApiBase
::PARAM_HELP_MSG_INFO
] ) ) {
455 foreach ( $settings[ApiBase
::PARAM_HELP_MSG_INFO
] as $i ) {
456 $tag = array_shift( $i );
457 $info[] = $context->msg( "apihelp-{$path}-paraminfo-{$tag}" )
458 ->numParams( count( $i ) )
459 ->params( $context->getLanguage()->commaList( $i ) )
460 ->params( $module->getModulePrefix() )
465 // Type documentation
466 if ( !isset( $settings[ApiBase
::PARAM_TYPE
] ) ) {
467 $dflt = isset( $settings[ApiBase
::PARAM_DFLT
] )
468 ?
$settings[ApiBase
::PARAM_DFLT
]
470 if ( is_bool( $dflt ) ) {
471 $settings[ApiBase
::PARAM_TYPE
] = 'boolean';
472 } elseif ( is_string( $dflt ) ||
is_null( $dflt ) ) {
473 $settings[ApiBase
::PARAM_TYPE
] = 'string';
474 } elseif ( is_int( $dflt ) ) {
475 $settings[ApiBase
::PARAM_TYPE
] = 'integer';
478 if ( isset( $settings[ApiBase
::PARAM_TYPE
] ) ) {
479 $type = $settings[ApiBase
::PARAM_TYPE
];
480 $multi = !empty( $settings[ApiBase
::PARAM_ISMULTI
] );
481 $hintPipeSeparated = true;
482 $count = ApiBase
::LIMIT_SML2 +
1;
484 if ( is_array( $type ) ) {
485 $count = count( $type );
486 $links = isset( $settings[ApiBase
::PARAM_VALUE_LINKS
] )
487 ?
$settings[ApiBase
::PARAM_VALUE_LINKS
]
489 $type = array_map( function ( $v ) use ( $links ) {
490 $ret = wfEscapeWikiText( $v );
491 if ( isset( $links[$v] ) ) {
492 $ret = "[[{$links[$v]}|$ret]]";
496 $i = array_search( '', $type, true );
497 if ( $i === false ) {
498 $type = $context->getLanguage()->commaList( $type );
501 $type = $context->msg( 'api-help-param-list-can-be-empty' )
502 ->numParams( count( $type ) )
503 ->params( $context->getLanguage()->commaList( $type ) )
506 $info[] = $context->msg( 'api-help-param-list' )
507 ->params( $multi ?
2 : 1 )
510 $hintPipeSeparated = false;
515 if ( isset( $settings[ApiBase
::PARAM_SUBMODULE_MAP
] ) ) {
516 $map = $settings[ApiBase
::PARAM_SUBMODULE_MAP
];
519 foreach ( $map as $v => $m ) {
520 $submodules[] = "[[Special:ApiHelp/{$m}|{$v}]]";
523 $submodules = $module->getModuleManager()->getNames( $name );
525 $prefix = $module->isMain()
526 ?
'' : ( $module->getModulePath() . '+' );
527 $submodules = array_map( function ( $name ) use ( $prefix ) {
528 return "[[Special:ApiHelp/{$prefix}{$name}|{$name}]]";
531 $count = count( $submodules );
532 $info[] = $context->msg( 'api-help-param-list' )
533 ->params( $multi ?
2 : 1 )
534 ->params( $context->getLanguage()->commaList( $submodules ) )
536 $hintPipeSeparated = false;
537 // No type message necessary, we have a list of values.
542 $namespaces = MWNamespace
::getValidNamespaces();
543 $count = count( $namespaces );
544 $info[] = $context->msg( 'api-help-param-list' )
545 ->params( $multi ?
2 : 1 )
546 ->params( $context->getLanguage()->commaList( $namespaces ) )
548 $hintPipeSeparated = false;
549 // No type message necessary, we have a list of values.
554 $tags = ChangeTags
::listExplicitlyDefinedTags();
555 $count = count( $tags );
556 $info[] = $context->msg( 'api-help-param-list' )
557 ->params( $multi ?
2 : 1 )
558 ->params( $context->getLanguage()->commaList( $tags ) )
560 $hintPipeSeparated = false;
565 if ( isset( $settings[ApiBase
::PARAM_MAX2
] ) ) {
566 $info[] = $context->msg( 'api-help-param-limit2' )
567 ->numParams( $settings[ApiBase
::PARAM_MAX
] )
568 ->numParams( $settings[ApiBase
::PARAM_MAX2
] )
571 $info[] = $context->msg( 'api-help-param-limit' )
572 ->numParams( $settings[ApiBase
::PARAM_MAX
] )
578 // Possible messages:
579 // api-help-param-integer-min,
580 // api-help-param-integer-max,
581 // api-help-param-integer-minmax
584 if ( isset( $settings[ApiBase
::PARAM_MIN
] ) ) {
586 $min = $settings[ApiBase
::PARAM_MIN
];
588 if ( isset( $settings[ApiBase
::PARAM_MAX
] ) ) {
590 $max = $settings[ApiBase
::PARAM_MAX
];
592 if ( $suffix !== '' ) {
594 $context->msg( "api-help-param-integer-$suffix" )
595 ->params( $multi ?
2 : 1 )
596 ->numParams( $min, $max )
602 $info[] = $context->msg( 'api-help-param-upload' )
604 // No type message necessary, api-help-param-upload should handle it.
610 // Displaying a type message here would be useless.
616 // Add type. Messages for grep: api-help-param-type-limit
617 // api-help-param-type-integer api-help-param-type-boolean
618 // api-help-param-type-timestamp api-help-param-type-user
619 // api-help-param-type-password
620 if ( is_string( $type ) ) {
621 $msg = $context->msg( "api-help-param-type-$type" );
622 if ( !$msg->isDisabled() ) {
623 $info[] = $msg->params( $multi ?
2 : 1 )->parse();
629 if ( $hintPipeSeparated ) {
630 $extra[] = $context->msg( 'api-help-param-multi-separate' )->parse();
632 if ( $count > ApiBase
::LIMIT_SML1
) {
633 $extra[] = $context->msg( 'api-help-param-multi-max' )
634 ->numParams( ApiBase
::LIMIT_SML1
, ApiBase
::LIMIT_SML2
)
638 $info[] = implode( ' ', $extra );
644 $default = isset( $settings[ApiBase
::PARAM_DFLT
] )
645 ?
$settings[ApiBase
::PARAM_DFLT
]
647 if ( $default === '' ) {
648 $info[] = $context->msg( 'api-help-param-default-empty' )
650 } elseif ( $default !== null && $default !== false ) {
651 $info[] = $context->msg( 'api-help-param-default' )
652 ->params( wfEscapeWikiText( $default ) )
656 if ( !array_filter( $description ) ) {
657 $description = [ self
::wrap(
658 $context->msg( 'api-help-param-no-description' ),
663 // Add "deprecated" flag
664 if ( !empty( $settings[ApiBase
::PARAM_DEPRECATED
] ) ) {
665 $help['parameters'] .= Html
::openElement( 'dd',
666 [ 'class' => 'info' ] );
667 $help['parameters'] .= self
::wrap(
668 $context->msg( 'api-help-param-deprecated' ),
669 'apihelp-deprecated', 'strong'
671 $help['parameters'] .= Html
::closeElement( 'dd' );
674 if ( $description ) {
675 $description = implode( '', $description );
676 $description = preg_replace( '!\s*</([oud]l)>\s*<\1>\s*!', "\n", $description );
677 $help['parameters'] .= Html
::rawElement( 'dd',
678 [ 'class' => 'description' ], $description );
681 foreach ( $info as $i ) {
682 $help['parameters'] .= Html
::rawElement( 'dd', [ 'class' => 'info' ], $i );
686 if ( $dynamicParams !== null ) {
687 $dynamicParams = ApiBase
::makeMessage( $dynamicParams, $context, [
688 $module->getModulePrefix(),
689 $module->getModuleName(),
690 $module->getModulePath()
692 $help['parameters'] .= Html
::element( 'dt', null, '*' );
693 $help['parameters'] .= Html
::rawElement( 'dd',
694 [ 'class' => 'description' ], $dynamicParams->parse() );
697 $help['parameters'] .= Html
::closeElement( 'dl' );
698 $help['parameters'] .= Html
::closeElement( 'div' );
701 $examples = $module->getExamplesMessages();
703 $help['examples'] .= Html
::openElement( 'div',
704 [ 'class' => 'apihelp-block apihelp-examples' ] );
705 $msg = $context->msg( 'api-help-examples' );
706 if ( !$msg->isDisabled() ) {
707 $help['examples'] .= self
::wrap(
708 $msg->numParams( count( $examples ) ), 'apihelp-block-head', 'div'
712 $help['examples'] .= Html
::openElement( 'dl' );
713 foreach ( $examples as $qs => $msg ) {
714 $msg = ApiBase
::makeMessage( $msg, $context, [
715 $module->getModulePrefix(),
716 $module->getModuleName(),
717 $module->getModulePath()
720 $link = wfAppendQuery( wfScript( 'api' ), $qs );
721 $sandbox = SpecialPage
::getTitleFor( 'ApiSandbox' )->getLocalURL() . '#' . $qs;
722 $help['examples'] .= Html
::rawElement( 'dt', null, $msg->parse() );
723 $help['examples'] .= Html
::rawElement( 'dd', null,
724 Html
::element( 'a', [ 'href' => $link ], "api.php?$qs" ) . ' ' .
725 Html
::rawElement( 'a', [ 'href' => $sandbox ],
726 $context->msg( 'api-help-open-in-apisandbox' )->parse() )
729 $help['examples'] .= Html
::closeElement( 'dl' );
730 $help['examples'] .= Html
::closeElement( 'div' );
733 $subtocnumber = $tocnumber;
734 $subtocnumber[$level +
1] = 0;
736 'submodules' => $options['recursivesubmodules'],
737 'headerlevel' => $level +
1,
738 'tocnumber' => &$subtocnumber,
742 if ( $options['submodules'] && $module->getModuleManager() ) {
743 $manager = $module->getModuleManager();
745 foreach ( $groups as $group ) {
746 $names = $manager->getNames( $group );
748 foreach ( $names as $name ) {
749 $submodules[] = $manager->getModule( $name );
752 $help['submodules'] .= self
::getHelpInternal(
760 $module->modifyHelp( $help, $suboptions, $haveModules );
762 Hooks
::run( 'APIHelpModifyOutput', [ $module, &$help, $suboptions, &$haveModules ] );
764 $out .= implode( "\n", $help );
770 public function shouldCheckMaxlag() {
774 public function isReadMode() {
778 public function getCustomPrinter() {
779 $params = $this->extractRequestParams();
780 if ( $params['wrap'] ) {
784 $main = $this->getMain();
785 $errorPrinter = $main->createPrinterByName( $main->getParameter( 'format' ) );
786 return new ApiFormatRaw( $main, $errorPrinter );
789 public function getAllowedParams() {
792 ApiBase
::PARAM_DFLT
=> 'main',
793 ApiBase
::PARAM_ISMULTI
=> true,
795 'submodules' => false,
796 'recursivesubmodules' => false,
802 protected function getExamplesMessages() {
805 => 'apihelp-help-example-main',
806 'action=help&modules=query&submodules=1'
807 => 'apihelp-help-example-submodules',
808 'action=help&recursivesubmodules=1'
809 => 'apihelp-help-example-recursive',
810 'action=help&modules=help'
811 => 'apihelp-help-example-help',
812 'action=help&modules=query+info|query+categorymembers'
813 => 'apihelp-help-example-query',
817 public function getHelpUrls() {
819 'https://www.mediawiki.org/wiki/API:Main_page',
820 'https://www.mediawiki.org/wiki/API:FAQ',
821 'https://www.mediawiki.org/wiki/API:Quick_start_guide',