Extension:SidebarDonateBox
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. |
![]() Release status: unmaintained |
|
---|---|
![]() |
|
Implementation | Skin |
Description | Adds a PayPal donate button to the sidebar |
Author(s) | Daniel Friesen (Dantmantalk) |
Latest version | 1.2.0 (2020-04-24) |
MediaWiki | 1.29+ |
License | GNU General Public License 2.0 or later |
Download | |
|
|
Quarterly downloads | 3 (Ranked 175th) |
Translate the SidebarDonateBox extension if it is available at translatewiki.net | |
The SidebarDonateBox extension allows an automatic addition of a PayPal donate button or box to a wikis sidebar.
InstallationEdit
- Download and place the file(s) in a directory called
SidebarDonateBox
in yourextensions/
folder. - Add the following code at the bottom of your
LocalSettings.php
:wfLoadExtension( 'SidebarDonateBox' ); $wgSidebarDonateBoxContent = "Your PayPal code";
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
To users running MediaWiki 1.34 or earlier:
The instructions above describe the new way of installing this extension using wfLoadExtension()
.
If you need to install this extension on these earlier versions (MediaWiki 1.34 and earlier), instead of wfLoadExtension( 'SidebarDonateBox' );
, you need to use:
require_once "$IP/extensions/SidebarDonateBox/SidebarDonateBox.php";
This extension was migrated from Daniel Friesen's Wiki-Tools.com and checked into Wikimedia's software repository. |