1 | <?php |
||
35 | class TextContent extends AbstractContent { |
||
36 | |||
37 | /** |
||
38 | * @param string $text |
||
39 | * @param string $model_id |
||
40 | * @throws MWException |
||
41 | */ |
||
42 | public function __construct( $text, $model_id = CONTENT_MODEL_TEXT ) { |
||
58 | |||
59 | /** |
||
60 | * @note Mutable subclasses MUST override this to return a copy! |
||
61 | * |
||
62 | * @return Content $this |
||
63 | */ |
||
64 | public function copy() { |
||
67 | |||
68 | public function getTextForSummary( $maxlength = 250 ) { |
||
79 | |||
80 | /** |
||
81 | * Returns the text's size in bytes. |
||
82 | * |
||
83 | * @return int |
||
84 | */ |
||
85 | public function getSize() { |
||
90 | |||
91 | /** |
||
92 | * Returns true if this content is not a redirect, and $wgArticleCountMethod |
||
93 | * is "any". |
||
94 | * |
||
95 | * @param bool|null $hasLinks If it is known whether this content contains links, |
||
96 | * provide this information here, to avoid redundant parsing to find out. |
||
97 | * |
||
98 | * @return bool |
||
99 | */ |
||
100 | public function isCountable( $hasLinks = null ) { |
||
113 | |||
114 | /** |
||
115 | * Returns the text represented by this Content object, as a string. |
||
116 | * |
||
117 | * @return string The raw text. |
||
118 | */ |
||
119 | public function getNativeData() { |
||
122 | |||
123 | /** |
||
124 | * Returns the text represented by this Content object, as a string. |
||
125 | * |
||
126 | * @return string The raw text. |
||
127 | */ |
||
128 | public function getTextForSearchIndex() { |
||
131 | |||
132 | /** |
||
133 | * Returns attempts to convert this content object to wikitext, |
||
134 | * and then returns the text string. The conversion may be lossy. |
||
135 | * |
||
136 | * @note this allows any text-based content to be transcluded as if it was wikitext. |
||
137 | * |
||
138 | * @return string|bool The raw text, or false if the conversion failed. |
||
139 | */ |
||
140 | public function getWikitextForTransclusion() { |
||
149 | |||
150 | /** |
||
151 | * Do a "\r\n" -> "\n" and "\r" -> "\n" transformation |
||
152 | * as well as trim trailing whitespace |
||
153 | * |
||
154 | * This was formerly part of Parser::preSaveTransform, but |
||
155 | * for non-wikitext content models they probably still want |
||
156 | * to normalize line endings without all of the other PST |
||
157 | * changes. |
||
158 | * |
||
159 | * @since 1.28 |
||
160 | * @param $text |
||
161 | * @return string |
||
162 | */ |
||
163 | public static function normalizeLineEndings( $text ) { |
||
164 | return str_replace( [ "\r\n", "\r" ], "\n", rtrim( $text ) ); |
||
165 | } |
||
166 | |||
167 | /** |
||
168 | * Returns a Content object with pre-save transformations applied. |
||
169 | * |
||
170 | * At a minimum, subclasses should make sure to call TextContent::normalizeLineEndings() |
||
171 | * either directly or part of Parser::preSaveTransform(). |
||
172 | * |
||
173 | * @param Title $title |
||
174 | * @param User $user |
||
175 | * @param ParserOptions $popts |
||
176 | * |
||
177 | * @return Content |
||
178 | */ |
||
179 | public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) { |
||
180 | $text = $this->getNativeData(); |
||
181 | $pst = self::normalizeLineEndings( $text ); |
||
182 | |||
183 | return ( $text === $pst ) ? $this : new static( $pst, $this->getModel() ); |
||
184 | } |
||
185 | |||
186 | /** |
||
187 | * Diff this content object with another content object. |
||
188 | * |
||
189 | * @since 1.21 |
||
190 | * |
||
191 | * @param Content $that The other content object to compare this content object to. |
||
192 | * @param Language $lang The language object to use for text segmentation. |
||
193 | * If not given, $wgContentLang is used. |
||
194 | * |
||
195 | * @return Diff A diff representing the changes that would have to be |
||
196 | * made to this content object to make it equal to $that. |
||
197 | */ |
||
198 | public function diff( Content $that, Language $lang = null ) { |
||
220 | |||
221 | /** |
||
222 | * Fills the provided ParserOutput object with information derived from the content. |
||
223 | * Unless $generateHtml was false, this includes an HTML representation of the content |
||
224 | * provided by getHtml(). |
||
225 | * |
||
226 | * For content models listed in $wgTextModelsToParse, this method will call the MediaWiki |
||
227 | * wikitext parser on the text to extract any (wikitext) links, magic words, etc. |
||
228 | * |
||
229 | * Subclasses may override this to provide custom content processing. |
||
230 | * For custom HTML generation alone, it is sufficient to override getHtml(). |
||
231 | * |
||
232 | * @param Title $title Context title for parsing |
||
233 | * @param int $revId Revision ID (for {{REVISIONID}}) |
||
234 | * @param ParserOptions $options Parser options |
||
235 | * @param bool $generateHtml Whether or not to generate HTML |
||
236 | * @param ParserOutput $output The output object to fill (reference). |
||
237 | */ |
||
238 | protected function fillParserOutput( Title $title, $revId, |
||
256 | |||
257 | /** |
||
258 | * Generates an HTML version of the content, for display. Used by |
||
259 | * fillParserOutput() to provide HTML for the ParserOutput object. |
||
260 | * |
||
261 | * Subclasses may override this to provide a custom HTML rendering. |
||
262 | * If further information is to be derived from the content (such as |
||
263 | * categories), the fillParserOutput() method can be overridden instead. |
||
264 | * |
||
265 | * For backwards-compatibility, this default implementation just calls |
||
266 | * getHighlightHtml(). |
||
267 | * |
||
268 | * @return string An HTML representation of the content |
||
269 | */ |
||
270 | protected function getHtml() { |
||
273 | |||
274 | /** |
||
275 | * Generates an HTML version of the content, for display. |
||
276 | * |
||
277 | * This default implementation returns an HTML-escaped version |
||
278 | * of the raw text content. |
||
279 | * |
||
280 | * @note The functionality of this method should really be implemented |
||
281 | * in getHtml(), and subclasses should override getHtml() if needed. |
||
282 | * getHighlightHtml() is kept around for backward compatibility with |
||
283 | * extensions that already override it. |
||
284 | * |
||
285 | * @deprecated since 1.24. Use getHtml() instead. In particular, subclasses overriding |
||
286 | * getHighlightHtml() should override getHtml() instead. |
||
287 | * |
||
288 | * @return string An HTML representation of the content |
||
289 | */ |
||
290 | protected function getHighlightHtml() { |
||
293 | |||
294 | /** |
||
295 | * This implementation provides lossless conversion between content models based |
||
296 | * on TextContent. |
||
297 | * |
||
298 | * @param string $toModel The desired content model, use the CONTENT_MODEL_XXX flags. |
||
299 | * @param string $lossy Flag, set to "lossy" to allow lossy conversion. If lossy conversion is not |
||
300 | * allowed, full round-trip conversion is expected to work without losing information. |
||
301 | * |
||
302 | * @return Content|bool A content object with the content model $toModel, or false if that |
||
303 | * conversion is not supported. |
||
304 | * |
||
305 | * @see Content::convert() |
||
306 | */ |
||
307 | public function convert( $toModel, $lossy = '' ) { |
||
324 | |||
325 | } |
||
326 |
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: