Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/Cite/src/ReferencePreviews/ReferencePreviewsGadgetsIntegration.php
Ðазад
<?php namespace Cite\ReferencePreviews; use InvalidArgumentException; use MediaWiki\Config\Config; use MediaWiki\Extension\Gadgets\GadgetRepo; use MediaWiki\User\UserIdentity; /** * Gadgets integration * * @license GPL-2.0-or-later */ class ReferencePreviewsGadgetsIntegration { public const CONFIG_NAVIGATION_POPUPS_NAME = 'CiteReferencePreviewsConflictingNavPopupsGadgetName'; public const CONFIG_REFERENCE_TOOLTIPS_NAME = 'CiteReferencePreviewsConflictingRefTooltipsGadgetName'; private ?GadgetRepo $gadgetRepo; private string $navPopupsGadgetName; private string $refTooltipsGadgetName; public function __construct( Config $config, ?GadgetRepo $gadgetRepo ) { $this->navPopupsGadgetName = $this->sanitizeGadgetName( $config->get( self::CONFIG_NAVIGATION_POPUPS_NAME ) ); $this->refTooltipsGadgetName = $this->sanitizeGadgetName( $config->get( self::CONFIG_REFERENCE_TOOLTIPS_NAME ) ); $this->gadgetRepo = $gadgetRepo; } private function sanitizeGadgetName( string $gadgetName ): string { return str_replace( ' ', '_', trim( $gadgetName ) ); } private function isGadgetEnabled( UserIdentity $user, string $gadgetName ): bool { if ( $this->gadgetRepo ) { if ( in_array( $gadgetName, $this->gadgetRepo->getGadgetIds() ) ) { try { return $this->gadgetRepo->getGadget( $gadgetName ) ->isEnabled( $user ); } catch ( InvalidArgumentException $e ) { return false; } } } return false; } public function isNavPopupsGadgetEnabled( UserIdentity $user ): bool { return $this->isGadgetEnabled( $user, $this->navPopupsGadgetName ); } public function isRefTooltipsGadgetEnabled( UserIdentity $user ): bool { return $this->isGadgetEnabled( $user, $this->refTooltipsGadgetName ); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка