Manual:WikitextContent.php

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

WikitextContent.php はウィキテキスト ページ向けの Content オブジェクトを含んでいます。 Extends TextContent .

この例では「Foo」というページを本文「Hello world」、要約「Greetings」という内容で利用者「WorldGreeter」として編集します。

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