MediaWiki REL1_37
DifferenceEngineSlotDiffRenderer.php
Go to the documentation of this file.
1<?php
24
33
36
41 $this->differenceEngine = clone $differenceEngine;
42
43 // Set state to loaded. This should not matter to any of the methods invoked by
44 // the adapter, but just in case a load does get triggered somehow, make sure it's a no-op.
45 $fakeContent = MediaWikiServices::getInstance()
46 ->getContentHandlerFactory()
47 ->getContentHandler( CONTENT_MODEL_WIKITEXT )
48 ->makeEmptyContent();
49 $this->differenceEngine->setContent( $fakeContent, $fakeContent );
50
51 $this->differenceEngine->markAsSlotDiffRenderer();
52 }
53
55 public function getDiff( Content $oldContent = null, Content $newContent = null ) {
56 $this->normalizeContents( $oldContent, $newContent );
57 return $this->differenceEngine->generateContentDiffBody( $oldContent, $newContent );
58 }
59
61 public function addModules( OutputPage $output ) {
62 $oldContext = null;
63 if ( $output !== $this->differenceEngine->getOutput() ) {
64 $oldContext = $this->differenceEngine->getContext();
65 $newContext = new DerivativeContext( $oldContext );
66 $newContext->setOutput( $output );
67 $this->differenceEngine->setContext( $newContext );
68 }
69 $this->differenceEngine->showDiffStyle();
70 if ( $oldContext ) {
71 $this->differenceEngine->setContext( $oldContext );
72 }
73 }
74
76 public function getExtraCacheKeys() {
77 return $this->differenceEngine->getExtraCacheKeys();
78 }
79
80}
const CONTENT_MODEL_WIKITEXT
Definition Defines.php:208
An IContextSource implementation which will inherit context from another source but allow individual ...
B/C adapter for turning a DifferenceEngine into a SlotDiffRenderer.
addModules(OutputPage $output)
Add modules needed for correct styling/behavior of the diff.to override
__construct(DifferenceEngine $differenceEngine)
getDiff(Content $oldContent=null, Content $newContent=null)
Get a diff between two content objects.One of them might be null (meaning a slot was created or remov...
getExtraCacheKeys()
Return any extra keys to split the diff cache by.to override string[]
DifferenceEngine is responsible for rendering the difference between two revisions as HTML.
setContent(Content $oldContent, Content $newContent)
Use specified text instead of loading from the database.
MediaWikiServices is the service locator for the application scope of MediaWiki.
This is one of the Core classes and should be read at least once by any new developers.
Renders a diff for a single slot (that is, a diff between two content objects).
normalizeContents(Content &$oldContent=null, Content &$newContent=null, $allowedClasses=null)
Helper method to normalize the input of getDiff().
Base interface for content objects.
Definition Content.php:35