คู่มือ:WikitextContent.php

This page is a translated version of the page Manual:WikitextContent.php and the translation is 50% complete.

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

ตัวอย่าง

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 );