Manual:ContentHandler.php
MediaWiki ファイル: ContentHandler.php | |
---|---|
場所: | includes/content/ |
ソース コード: | master • 1.40.1 • 1.39.5 • 1.35.13 |
クラス: | ContentHandler |
ContentHandler.php contains the ContentHandler class, the base interface for content handling. This file has been available since MediaWiki 1.21 .
移行
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 );