MediaWiki REL1_31
JavaScriptContent.php
Go to the documentation of this file.
1<?php
34
38 private $redirectTarget = false;
39
44 public function __construct( $text, $modelId = CONTENT_MODEL_JAVASCRIPT ) {
45 parent::__construct( $text, $modelId );
46 }
47
58 public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
59 global $wgParser;
60 // @todo Make pre-save transformation optional for script pages
61 // See bug #32858
62
63 $text = $this->getNativeData();
64 $pst = $wgParser->preSaveTransform( $text, $title, $user, $popts );
65
66 return new static( $pst );
67 }
68
72 protected function getHtml() {
73 $html = "";
74 $html .= "<pre class=\"mw-code mw-js\" dir=\"ltr\">\n";
75 $html .= htmlspecialchars( $this->getNativeData() );
76 $html .= "\n</pre>\n";
77
78 return $html;
79 }
80
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 ) {
102 }
103 $this->redirectTarget = null;
104 $text = $this->getNativeData();
105 if ( strpos( $text, '/* #REDIRECT */' ) === 0 ) {
106 // Extract the title from the url
107 preg_match( '/title=(.*?)\\\\u0026action=raw/', $text, $matches );
108 if ( isset( $matches[1] ) ) {
109 $title = Title::newFromText( $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
121 }
122
123}
$wgParser
Definition Setup.php:917
equals(Content $that=null)
Content for JavaScript pages.
__construct( $text, $modelId=CONTENT_MODEL_JAVASCRIPT)
bool Title null $redirectTarget
preSaveTransform(Title $title, User $user, ParserOptions $popts)
Returns a Content object with pre-save transformations applied using Parser::preSaveTransform().
updateRedirect(Title $target)
If this page is a redirect, return the content if it should redirect to $target instead.
Set options of the Parser.
Content object implementation for representing flat text.
getNativeData()
Returns the text represented by this Content object, as a string.
Represents a title within MediaWiki.
Definition Title.php:39
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:53
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:964
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 an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition hooks.txt:2013
const CONTENT_MODEL_JAVASCRIPT
Definition Defines.php:246