mwstake/mediawiki-component-alertbanners
最新稳定版本:3.0.0
Composer 安装命令:
composer require mwstake/mediawiki-component-alertbanners
包简介
Provides an API for showing banners above the content of a page
README 文档
README
AlertBanners for MediaWiki
Provides an API for showing banners above the content of a page
This code is meant to be executed within the MediaWiki application context. No standalone usage is intended.
Compatibility
3.0.x-> MediaWiki 1.432.0.x-> MediaWiki 1.392.0.x-> MediaWiki 1.35
Use in a MediaWiki extension
Require this component in the composer.json of your extension:
{ "require": { "mwstake/mediawiki-component-alertbanners": "~3" } } Since 2.0 explicit initialization is required. This can be achived by
- either adding
"callback": "mwsInitComponents"to yourextension.json/skin.json - or calling
mwsInitComponents();within you extensions/skins customcallbackmethod
See also mwstake/mediawiki-componentloader.
Implement a provider
Create a class that implements MWStake\MediaWiki\Component\AlertBanners\IAlertProvider. For convenience you may want to derive directly from the abstract base class MWStake\MediaWiki\Component\AlertBanners\AlertProviderBase
Register a provider
There are two ways to register a provider:
- Using the
mwsgAlertBannersProviderRegistryGlobalVars configuraton - Using the hook
MWStakeAlertBannersRegisterProviders
On both cases a ObjectFactory specification must be provided.
Example 1: GlobalVars
$GLOBALS['mwsgAlertProviderRegistry']['my-own-provider'] = [ 'class' => '\\MediaWiki\Extension\\MyExt\\MyAlertProvider', 'services' => 'MainConfig' ];
Example 2: Hookhandler
$GLOBALS['wgHooks']['MWStakeAlertBannersRegisterProviders'][] = function( &$providers ) { $providers["my-own-provider"] = [ 'class' => '\\MediaWiki\Extension\\MyExt\\MyAlertProvider', 'services' => 'MainConfig' ] }
Use in client code
Load mwstake.component.alertbanners ResourceLoader module.
Available methods:
mwstake.alerts.add( id: string, $elem: jQuery, type: string ): Inject a alert boxmwstake.alerts.remove( id: string ): Remove a alert box
统计信息
- 总下载量: 31.97k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-only
- 更新时间: 2026-01-04