MediaWiki  1.33.0
DeletePageJob.php
Go to the documentation of this file.
1 <?php
2 
6 class DeletePageJob extends Job {
7  public function __construct( $title, $params = [] ) {
8  parent::__construct( 'deletePage', $title, $params );
9  }
10 
16  public function run() {
17  // Failure to load the page is not job failure.
18  // A parallel deletion operation may have already completed the page deletion.
19  $wikiPage = WikiPage::newFromID( $this->params['wikiPageId'] );
20  if ( $wikiPage ) {
21  $wikiPage->doDeleteArticleBatched(
22  $this->params['reason'],
23  $this->params['suppress'],
24  User::newFromId( $this->params['userId'] ),
25  json_decode( $this->params['tags'] ),
26  $this->params['logsubtype'],
27  false,
28  $this->getRequestId() );
29  }
30  return true;
31  }
32 }
User\newFromId
static newFromId( $id)
Static factory method for creation from a given user ID.
Definition: User.php:609
Job\getRequestId
getRequestId()
Definition: Job.php:217
Job\$title
Title $title
Definition: Job.php:41
Job\$params
array $params
Array of job parameters.
Definition: Job.php:35
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
Job
Class to both describe a background job and handle jobs.
Definition: Job.php:30
DeletePageJob\run
run()
Execute the job.
Definition: DeletePageJob.php:16
DeletePageJob\__construct
__construct( $title, $params=[])
Definition: DeletePageJob.php:7
WikiPage\newFromID
static newFromID( $id, $from='fromdb')
Constructor from a page id.
Definition: WikiPage.php:176
DeletePageJob
Class DeletePageJob.
Definition: DeletePageJob.php:6