MediaWiki  1.29.2
commandLine.inc
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/Maintenance.php';
25 
26 // @codingStandardsIgnoreStart MediaWiki.NamingConventions.ValidGlobalName.wgPrefix
29 // @codingStandardsIgnoreEnd
30 if ( !isset( $optionsWithArgs ) ) {
31  $optionsWithArgs = [];
32 }
33 if ( !isset( $optionsWithoutArgs ) ) {
35 }
36 
37 class CommandLineInc extends Maintenance {
38  public function __construct() {
39  // @codingStandardsIgnoreStart MediaWiki.NamingConventions.ValidGlobalName.wgPrefix
41  // @codingStandardsIgnoreEnd
42  parent::__construct();
43  foreach ( $optionsWithArgs as $name ) {
44  $this->addOption( $name, '', false, true );
45  }
46  foreach ( $optionsWithoutArgs as $name ) {
47  $this->addOption( $name, '', false, false );
48  }
49  }
50 
55  protected function maybeHelp( $force = false ) {
56  if ( !$force ) {
57  return;
58  }
59  parent::maybeHelp( true );
60  }
61 
62  public function execute() {
63  // @codingStandardsIgnoreStart MediaWiki.NamingConventions.ValidGlobalName.wgPrefix
65  // @codingStandardsIgnoreEnd
68  }
69 }
70 
71 $maintClass = 'CommandLineInc';
$optionsWithoutArgs
global $optionsWithoutArgs
Definition: commandLine.inc:28
$optionsWithArgs
global $optionsWithArgs
Definition: commandLine.inc:24
$maintClass
$maintClass
Definition: commandLine.inc:71
CommandLineInc
Definition: commandLine.inc:37
CommandLineInc\maybeHelp
maybeHelp( $force=false)
No help, it would just be misleading since it misses custom options.
Definition: commandLine.inc:55
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
php
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
Definition: injection.txt:35
CommandLineInc\__construct
__construct()
Default constructor.
Definition: commandLine.inc:38
Maintenance\$mArgs
$mArgs
Definition: Maintenance.php:82
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:215
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
CommandLineInc\execute
execute()
Do the actual work.
Definition: commandLine.inc:62
$args
if( $line===false) $args
Definition: cdb.php:63
as
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
Definition: distributors.txt:9
Maintenance\$mOptions
$mOptions
Definition: Maintenance.php:79
$options
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1049