Manual:ContentHandler.php
MediaWiki file: ContentHandler.php | |
---|---|
Location: | includes/content/ |
Source code: | master • 1.39.3 • 1.38.6 • 1.35.10 |
Classes: | ContentHandler |
ContentHandler.php contains the ContentHandler class, the base interface for content handling. This file has been available since MediaWiki 1.21 .
Migration[edit]
Revision::getRawText()
was deprecated in MW 1.21, so if you're trying to migrate your code use
$content = $revision->getContent( Revision::RAW );
$text = ContentHandler::getContentText( $content );
Revision::getText()
was deprecated in MW 1.21, so if you're trying to migrate your code use this (see Manual:Revision.php for more info on the different audiences):
$content = $revision->getContent( Revision::FOR_THIS_USER, $user );
$text = ContentHandler::getContentText( $content );