Extension:PopupAlerts
This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{Extension }} infobox. |
PopupAlerts Release status: unmaintained |
|
---|---|
Description | Adds popup alerts to wiki pages with optionally specified expiration dates |
Author(s) | Vedmaka, Ike Hecht |
Latest version | 0.1 (March 2019) |
Compatibility policy | For every MediaWiki release that is a Long Term Support release there is a corresponding branch in the extension. |
MediaWiki | 1.31+ |
Database changes | No |
License | MIT License |
Download | |
Quarterly downloads | 1 (Ranked 130th) |
Translate the PopupAlerts extension if it is available at translatewiki.net | |
Issues | Open tasks · Report a bug |
The PopupAlerts extension allows to add popup alerts to wiki pages with an optionally specified expiration date so it can be controlled when (and if) users will see the popup again. It also has an integrated checksum-based invalidation mechanism to detect popup content change and hence reset the “already-seen” markers.
This extension was created for WikiWorks.
Installation
[edit]- Download and move the extracted
PopupAlerts
folder to yourextensions/
directory.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/PopupAlerts - Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'PopupAlerts' );
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Usage
[edit]{{#popupalert:some random wiki markup}}
popup will be seen once in 100 years
{{#popupalert:some random wiki markup|3600}}
popup will be seen once in one hour (3600 seconds)
Note: If you have many popups added to the page, only the first one will be taken into account. This limitation was added intentionally to prevent wiki pages from being spammed with popups.