MediaWiki  REL1_31
DuplicateJob.php
Go to the documentation of this file.
1 <?php
29 final class DuplicateJob extends Job {
37  parent::__construct( 'duplicate', $title, $params );
38  }
39 
46  public static function newFromJob( Job $job ) {
47  $djob = new self( $job->getTitle(), $job->getParams() );
48  $djob->command = $job->getType();
49  $djob->params = is_array( $djob->params ) ? $djob->params : [];
50  $djob->params = [ 'isDuplicate' => true ] + $djob->params;
51  $djob->metadata = $job->metadata;
52 
53  return $djob;
54  }
55 
56  public function run() {
57  return true;
58  }
59 }
array
the array() calling protocol came about after MediaWiki 1.4rc1.
Job\$title
Title $title
Definition: Job.php:42
Job\$params
array $params
Array of job parameters.
Definition: Job.php:36
true
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 just before the function returns a value If you return true
Definition: hooks.txt:2006
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:37
Job
Class to both describe a background job and handle jobs.
Definition: Job.php:31
DuplicateJob\newFromJob
static newFromJob(Job $job)
Get a duplicate no-op version of a job.
Definition: DuplicateJob.php:46
DuplicateJob
No-op job that does nothing.
Definition: DuplicateJob.php:29
DuplicateJob\run
run()
Run the job.
Definition: DuplicateJob.php:56
Title
Represents a title within MediaWiki.
Definition: Title.php:39
$job
if(count( $args)< 1) $job
Definition: recompressTracked.php:47
DuplicateJob\__construct
__construct(Title $title, array $params)
Callers should use DuplicateJob::newFromJob() instead.
Definition: DuplicateJob.php:36