*/ namespace MediaWiki\Extension\Scribunto; use MediaWiki\Content\TextContent; use MediaWiki\Title\Title; /** * Represents the content of a Scribunto script page */ class ScribuntoContent extends TextContent { /** * @param string $text */ public function __construct( $text ) { parent::__construct( $text, CONTENT_MODEL_SCRIBUNTO ); } /** * @inheritDoc */ public function updateRedirect( Title $target ) { return Scribunto::newDefaultEngine()->updateRedirect( $this, $target ); } /** * @inheritDoc */ public function getRedirectTarget() { return Scribunto::newDefaultEngine()->getRedirectTarget( $this ); } }