Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/VisualEditor/includes/VisualEditorParsoidClientFactory.php
Ðазад
<?php namespace MediaWiki\Extension\VisualEditor; use MediaWiki\Context\RequestContext; use MediaWiki\Permissions\Authority; use MediaWiki\Rest\Handler\Helper\PageRestHelperFactory; /** * @since 1.40 */ class VisualEditorParsoidClientFactory { /** * @internal For use by ServiceWiring.php only or when locating the service */ public const SERVICE_NAME = 'VisualEditor.ParsoidClientFactory'; private PageRestHelperFactory $pageRestHelperFactory; public function __construct( PageRestHelperFactory $pageRestHelperFactory ) { $this->pageRestHelperFactory = $pageRestHelperFactory; } /** * Create a ParsoidClient for accessing Parsoid. * * @param string|string[]|false $cookiesToForward * @param Authority|null $performer * * @return ParsoidClient */ public function createParsoidClient( /* Kept for compatibility with other extensions */ $cookiesToForward, ?Authority $performer = null ): ParsoidClient { if ( $performer === null ) { $performer = RequestContext::getMain()->getAuthority(); } return $this->createDirectClient( $performer ); } /** * Create a ParsoidClient for accessing Parsoid. */ private function createDirectClient( Authority $performer ): ParsoidClient { return new DirectParsoidClient( $this->pageRestHelperFactory, $performer ); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка