MediaWiki  1.33.0
DifferenceEngineSlotDiffRenderer.php
Go to the documentation of this file.
1 <?php
32 
35 
37  $this->differenceEngine = clone $differenceEngine;
38 
39  // Set state to loaded. This should not matter to any of the methods invoked by
40  // the adapter, but just in case a load does get triggered somehow, make sure it's a no-op.
41  $fakeContent = ContentHandler::getForModelID( CONTENT_MODEL_WIKITEXT )->makeEmptyContent();
42  $this->differenceEngine->setContent( $fakeContent, $fakeContent );
43 
44  $this->differenceEngine->markAsSlotDiffRenderer();
45  }
46 
48  public function getDiff( Content $oldContent = null, Content $newContent = null ) {
49  $this->normalizeContents( $oldContent, $newContent );
50  return $this->differenceEngine->generateContentDiffBody( $oldContent, $newContent );
51  }
52 
53  public function addModules( OutputPage $output ) {
54  $oldContext = null;
55  if ( $output !== $this->differenceEngine->getOutput() ) {
56  $oldContext = $this->differenceEngine->getContext();
57  $newContext = new DerivativeContext( $oldContext );
58  $newContext->setOutput( $output );
59  $this->differenceEngine->setContext( $newContext );
60  }
61  $this->differenceEngine->showDiffStyle();
62  if ( $oldContext ) {
63  $this->differenceEngine->setContext( $oldContext );
64  }
65  }
66 
67  public function getExtraCacheKeys() {
68  return $this->differenceEngine->getExtraCacheKeys();
69  }
70 
71 }
ContentHandler\getForModelID
static getForModelID( $modelId)
Returns the ContentHandler singleton for the given model ID.
Definition: ContentHandler.php:252
DifferenceEngineSlotDiffRenderer\$differenceEngine
DifferenceEngine $differenceEngine
Definition: DifferenceEngineSlotDiffRenderer.php:34
CONTENT_MODEL_WIKITEXT
const CONTENT_MODEL_WIKITEXT
Definition: Defines.php:235
SlotDiffRenderer\normalizeContents
normalizeContents(Content &$oldContent=null, Content &$newContent=null, $allowedClasses=null)
Helper method to normalize the input of getDiff().
Definition: SlotDiffRenderer.php:75
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
DerivativeContext
An IContextSource implementation which will inherit context from another source but allow individual ...
Definition: DerivativeContext.php:30
DifferenceEngineSlotDiffRenderer\getDiff
getDiff(Content $oldContent=null, Content $newContent=null)
@inheritDoc
Definition: DifferenceEngineSlotDiffRenderer.php:48
$output
$output
Definition: SyntaxHighlight.php:334
DifferenceEngineSlotDiffRenderer\addModules
addModules(OutputPage $output)
Add modules needed for correct styling/behavior of the diff.
Definition: DifferenceEngineSlotDiffRenderer.php:53
DifferenceEngineSlotDiffRenderer\getExtraCacheKeys
getExtraCacheKeys()
Return any extra keys to split the diff cache by.
Definition: DifferenceEngineSlotDiffRenderer.php:67
Content
Base interface for content objects.
Definition: Content.php:34
DifferenceEngineSlotDiffRenderer\__construct
__construct(DifferenceEngine $differenceEngine)
Definition: DifferenceEngineSlotDiffRenderer.php:36
SlotDiffRenderer
Renders a diff for a single slot (that is, a diff between two content objects).
Definition: SlotDiffRenderer.php:39
DifferenceEngine
DifferenceEngine is responsible for rendering the difference between two revisions as HTML.
Definition: DifferenceEngine.php:51
DifferenceEngineSlotDiffRenderer
B/C adapter for turning a DifferenceEngine into a SlotDiffRenderer.
Definition: DifferenceEngineSlotDiffRenderer.php:31