Manual:WikitextContent.php

From mediawiki.org

WikitextContent.php contains the Content object for wiki text pages. Extends TextContent .

Examples[edit]

This will edit a page called 'Foo' with the content 'Hello world' and summary 'Greetings' by the user 'WorldGreeter'.

$user = User::newSystemUser( 'WorldGreeter', [ 'steal' => true ] );
$page = WikiPage::factory( 'Foo' );
$content = new WikitextContent( 'Hello world' );
$success = $page->doEditContent ( $content, 'Greetings', 0, false, $user );