MediaWiki REL1_33
alltrans.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/../Maintenance.php';
25
32class AllTrans extends Maintenance {
33 public function __construct() {
34 parent::__construct();
35 $this->addDescription( 'Get all messages as defined by the English language file' );
36 }
37
38 public function execute() {
39 $englishMessages = array_keys( Language::getMessagesFor( 'en' ) );
40 foreach ( $englishMessages as $key ) {
41 $this->output( "$key\n" );
42 }
43 }
44}
45
46$maintClass = AllTrans::class;
47require_once RUN_MAINTENANCE_IF_MAIN;
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
$maintClass
Definition alltrans.php:46
Maintenance script that gets all messages as defined by the English language file.
Definition alltrans.php:32
__construct()
Default constructor.
Definition alltrans.php:33
execute()
Do the actual work.
Definition alltrans.php:38
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
output( $out, $channel=null)
Throw some output to the user.
addDescription( $text)
Set the description text.
require_once RUN_MAINTENANCE_IF_MAIN