MediaWiki master
VueContent.php
Go to the documentation of this file.
1<?php
12namespace MediaWiki\Content;
13
20class VueContent extends TextContent {
21
27 public function __construct( $text, $modelId = CONTENT_MODEL_VUE ) {
28 parent::__construct( $text, $modelId );
29 }
30
31}
const CONTENT_MODEL_VUE
Definition Defines.php:241
Content object implementation for representing flat text.
Content for Vue pages.
__construct( $text, $modelId=CONTENT_MODEL_VUE)