Extension:PopupAlerts

From mediawiki.org
MediaWiki extensions manual
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 2 (Ranked 138th)
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 your extensions/ 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' );
    
  • Yes 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.