build: Updating development dependencies
[T119942Repr.git] / specials / SpecialHelloWorld.php
blob304dd90123a9eadb80deb0bd2e27f57577bed7b1
1 <?php
2 /**
3 * HelloWorld SpecialPage for BoilerPlate extension
5 * @file
6 * @ingroup Extensions
7 */
9 class SpecialHelloWorld extends SpecialPage {
10 public function __construct() {
11 parent::__construct( 'HelloWorld' );
14 /**
15 * Show the page to the user
17 * @param string $sub The subpage string argument (if any).
18 * [[Special:HelloWorld/subpage]].
20 public function execute( $sub ) {
21 $out = $this->getOutput();
23 $out->setPageTitle( $this->msg( 'boilerplate-helloworld' ) );
25 $out->addHelpLink( 'How to become a MediaWiki hacker' );
27 $out->addWikiMsg( 'boilerplate-helloworld-intro' );
30 protected function getGroupName() {
31 return 'other';