MediaWiki  1.34.0
CssContent.php
Go to the documentation of this file.
1 <?php
29 
35 class CssContent extends TextContent {
36 
40  private $redirectTarget = false;
41 
46  public function __construct( $text, $modelId = CONTENT_MODEL_CSS ) {
47  parent::__construct( $text, $modelId );
48  }
49 
62  public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
63  // @todo Make pre-save transformation optional for script pages
64 
65  $text = $this->getText();
66  $pst = MediaWikiServices::getInstance()->getParser()
67  ->preSaveTransform( $text, $title, $user, $popts );
68 
69  return new static( $pst );
70  }
71 
75  protected function getHtml() {
76  $html = "";
77  $html .= "<pre class=\"mw-code mw-css\" dir=\"ltr\">\n";
78  $html .= htmlspecialchars( $this->getText() );
79  $html .= "\n</pre>\n";
80 
81  return $html;
82  }
83 
88  public function updateRedirect( Title $target ) {
89  if ( !$this->isRedirect() ) {
90  return $this;
91  }
92 
93  return $this->getContentHandler()->makeRedirectContent( $target );
94  }
95 
99  public function getRedirectTarget() {
100  if ( $this->redirectTarget !== false ) {
101  return $this->redirectTarget;
102  }
103  $this->redirectTarget = null;
104  $text = $this->getText();
105  if ( strpos( $text, '/* #REDIRECT */' ) === 0 ) {
106  // Extract the title from the url
107  preg_match( '/title=(.*?)&action=raw/', $text, $matches );
108  if ( isset( $matches[1] ) ) {
109  $title = Title::newFromText( urldecode( $matches[1] ) );
110  if ( $title ) {
111  // Have a title, check that the current content equals what
112  // the redirect content should be
113  if ( $this->equals( $this->getContentHandler()->makeRedirectContent( $title ) ) ) {
114  $this->redirectTarget = $title;
115  }
116  }
117  }
118  }
119 
120  return $this->redirectTarget;
121  }
122 
123 }
ParserOptions
Set options of the Parser.
Definition: ParserOptions.php:42
CssContent\updateRedirect
updateRedirect(Title $target)
Definition: CssContent.php:88
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:316
AbstractContent\isRedirect
isRedirect()
Definition: AbstractContent.php:356
MediaWiki\MediaWikiServices
MediaWikiServices is the service locator for the application scope of MediaWiki.
Definition: MediaWikiServices.php:117
CONTENT_MODEL_CSS
const CONTENT_MODEL_CSS
Definition: Defines.php:217
CssContent
Content object for CSS pages.
Definition: CssContent.php:35
AbstractContent\equals
equals(Content $that=null)
Decides whether two Content objects are equal.
Definition: AbstractContent.php:202
TextContent\getText
getText()
Returns the text represented by this Content object, as a string.
Definition: TextContent.php:136
CssContent\__construct
__construct( $text, $modelId=CONTENT_MODEL_CSS)
Definition: CssContent.php:46
AbstractContent\getContentHandler
getContentHandler()
Definition: AbstractContent.php:88
$matches
$matches
Definition: NoLocalSettings.php:24
CssContent\preSaveTransform
preSaveTransform(Title $title, User $user, ParserOptions $popts)
Returns a Content object with pre-save transformations applied using Parser::preSaveTransform().
Definition: CssContent.php:62
$title
$title
Definition: testCompression.php:34
CssContent\$redirectTarget
bool Title null $redirectTarget
Definition: CssContent.php:40
TextContent
Content object implementation for representing flat text.
Definition: TextContent.php:37
Title
Represents a title within MediaWiki.
Definition: Title.php:42
CssContent\getHtml
getHtml()
Definition: CssContent.php:75
CssContent\getRedirectTarget
getRedirectTarget()
Definition: CssContent.php:99
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:51