Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/includes/content/Transform/ContentTransformer.php
Ðазад
<?php namespace MediaWiki\Content\Transform; use MediaWiki\Content\Content; use MediaWiki\Content\IContentHandlerFactory; use MediaWiki\Page\PageReference; use MediaWiki\Parser\ParserOptions; use MediaWiki\User\UserIdentity; /** * A service to transform content. * * @since 1.37 */ class ContentTransformer { /** @var IContentHandlerFactory */ private $contentHandlerFactory; /** * @param IContentHandlerFactory $contentHandlerFactory */ public function __construct( IContentHandlerFactory $contentHandlerFactory ) { $this->contentHandlerFactory = $contentHandlerFactory; } /** * Returns a Content object with pre-save transformations applied (or $content * if no transformations apply). * * @param Content $content * @param PageReference $page * @param UserIdentity $user * @param ParserOptions $parserOptions * * @return Content */ public function preSaveTransform( Content $content, PageReference $page, UserIdentity $user, ParserOptions $parserOptions ): Content { $contentHandler = $this->contentHandlerFactory->getContentHandler( $content->getModel() ); $pstParams = new PreSaveTransformParamsValue( $page, $user, $parserOptions ); return $contentHandler->preSaveTransform( $content, $pstParams ); } /** * Returns a Content object with preload transformations applied (or $content * if no transformations apply). * * @param Content $content * @param PageReference $page * @param ParserOptions $parserOptions * @param array $params * * @return Content */ public function preloadTransform( Content $content, PageReference $page, ParserOptions $parserOptions, array $params = [] ): Content { $contentHandler = $this->contentHandlerFactory->getContentHandler( $content->getModel() ); $pltParams = new PreloadTransformParamsValue( $page, $parserOptions, $params ); return $contentHandler->preloadTransform( $content, $pltParams ); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка