MediaWiki REL1_33
TextContent.php
Go to the documentation of this file.
1<?php
29
38
42 protected $mText;
43
49 public function __construct( $text, $model_id = CONTENT_MODEL_TEXT ) {
50 parent::__construct( $model_id );
51
52 if ( $text === null || $text === false ) {
53 wfWarn( "TextContent constructed with \$text = " . var_export( $text, true ) . "! "
54 . "This may indicate an error in the caller's scope.", 2 );
55
56 $text = '';
57 }
58
59 if ( !is_string( $text ) ) {
60 throw new MWException( "TextContent expects a string in the constructor." );
61 }
62
63 $this->mText = $text;
64 }
65
71 public function copy() {
72 return $this; # NOTE: this is ok since TextContent are immutable.
73 }
74
75 public function getTextForSummary( $maxlength = 250 ) {
76 $text = $this->getText();
77
78 $truncatedtext = MediaWikiServices::getInstance()->getContentLanguage()->
79 truncateForDatabase( preg_replace( "/[\n\r]/", ' ', $text ), max( 0, $maxlength ) );
80
81 return $truncatedtext;
82 }
83
89 public function getSize() {
90 $text = $this->getText();
91
92 return strlen( $text );
93 }
94
104 public function isCountable( $hasLinks = null ) {
106
107 if ( $this->isRedirect() ) {
108 return false;
109 }
110
111 if ( $wgArticleCountMethod === 'any' ) {
112 return true;
113 }
114
115 return false;
116 }
117
125 public function getNativeData() {
126 return $this->getText();
127 }
128
136 public function getText() {
137 return $this->mText;
138 }
139
145 public function getTextForSearchIndex() {
146 return $this->getText();
147 }
148
157 public function getWikitextForTransclusion() {
158 $wikitext = $this->convert( CONTENT_MODEL_WIKITEXT, 'lossy' );
159
160 if ( $wikitext ) {
161 return $wikitext->getText();
162 } else {
163 return false;
164 }
165 }
166
180 public static function normalizeLineEndings( $text ) {
181 return str_replace( [ "\r\n", "\r" ], "\n", rtrim( $text ) );
182 }
183
196 public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
197 $text = $this->getText();
198 $pst = self::normalizeLineEndings( $text );
199
200 return ( $text === $pst ) ? $this : new static( $pst, $this->getModel() );
201 }
202
215 public function diff( Content $that, Language $lang = null ) {
216 $this->checkModelID( $that->getModel() );
217
218 // @todo could implement this in DifferenceEngine and just delegate here?
219
220 if ( !$lang ) {
221 $lang = MediaWikiServices::getInstance()->getContentLanguage();
222 }
223
224 $otext = $this->getText();
225 $ntext = $that->getText();
226
227 # Note: Use native PHP diff, external engines don't give us abstract output
228 $ota = explode( "\n", $lang->segmentForDiff( $otext ) );
229 $nta = explode( "\n", $lang->segmentForDiff( $ntext ) );
230
231 $diff = new Diff( $ota, $nta );
232
233 return $diff;
234 }
235
253 protected function fillParserOutput( Title $title, $revId,
255 ) {
257
258 if ( in_array( $this->getModel(), $wgTextModelsToParse ) ) {
259 // parse just to get links etc into the database, HTML is replaced below.
260 $output = $wgParser->parse( $this->getText(), $title, $options, true, true, $revId );
261 }
262
263 if ( $generateHtml ) {
264 $html = $this->getHtml();
265 } else {
266 $html = '';
267 }
268
269 $output->clearWrapperDivClass();
270 $output->setText( $html );
271 }
272
286 protected function getHtml() {
287 return $this->getHighlightHtml();
288 }
289
306 protected function getHighlightHtml() {
307 return htmlspecialchars( $this->getText() );
308 }
309
323 public function convert( $toModel, $lossy = '' ) {
324 $converted = parent::convert( $toModel, $lossy );
325
326 if ( $converted !== false ) {
327 return $converted;
328 }
329
330 $toHandler = ContentHandler::getForModelID( $toModel );
331
332 if ( $toHandler instanceof TextContentHandler ) {
333 // NOTE: ignore content serialization format - it's just text anyway.
334 $text = $this->getText();
335 $converted = $toHandler->unserializeContent( $text );
336 }
337
338 return $converted;
339 }
340
341}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
$wgArticleCountMethod
Method used to determine if a page in a content namespace should be counted as a valid article.
$wgTextModelsToParse
Determines which types of text are parsed as wikitext.
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
$wgParser
Definition Setup.php:886
Base implementation for content objects.
checkModelID( $modelId)
$model_id
Name of the content model this Content object represents.
Class representing a 'diff' between two sequences of strings.
Internationalisation code.
Definition Language.php:36
MediaWiki exception.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Set options of the Parser.
Base content handler implementation for flat text contents.
Content object implementation for representing flat text.
fillParserOutput(Title $title, $revId, ParserOptions $options, $generateHtml, ParserOutput &$output)
Fills the provided ParserOutput object with information derived from the content.
isCountable( $hasLinks=null)
Returns true if this content is not a redirect, and $wgArticleCountMethod is "any".
getSize()
Returns the text's size in bytes.
__construct( $text, $model_id=CONTENT_MODEL_TEXT)
preSaveTransform(Title $title, User $user, ParserOptions $popts)
Returns a Content object with pre-save transformations applied.
getWikitextForTransclusion()
Returns attempts to convert this content object to wikitext, and then returns the text string.
convert( $toModel, $lossy='')
This implementation provides lossless conversion between content models based on TextContent.
getHighlightHtml()
Generates an HTML version of the content, for display.
string $mText
getText()
Returns the text represented by this Content object, as a string.
getHtml()
Generates an HTML version of the content, for display.
getNativeData()
Returns the text represented by this Content object, as a string.
diff(Content $that, Language $lang=null)
Diff this content object with another content object.
getTextForSearchIndex()
Returns the text represented by this Content object, as a string.
getTextForSummary( $maxlength=250)
Returns a textual representation of the content suitable for use in edit summaries and log messages.
static normalizeLineEndings( $text)
Do a "\\r\\n" -> "\\n" and "\\r" -> "\\n" transformation as well as trim trailing whitespace.
Represents a title within MediaWiki.
Definition Title.php:40
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
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 & $options
Definition hooks.txt:1999
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:2011
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
Definition hooks.txt:2272
const CONTENT_MODEL_WIKITEXT
Definition Defines.php:244
const CONTENT_MODEL_TEXT
Definition Defines.php:247
Base interface for content objects.
Definition Content.php:34
In both all secondary updates will be triggered handle like object that caches derived data representing a and can trigger updates of cached copies of that e g in the links the and the CDN layer DerivedPageDataUpdater is used by PageUpdater when creating new but can also be used independently when performing meta data updates during or when puring a page It s a stepping stone on the way to a more complete refactoring of WikiPage NOTE
if(!isset( $args[0])) $lang