Extension:Springboard
Category:GPL licensed extensionsCategory:All extensions
Springboard is an extension to MediaWiki that allows user to manage, install, enable and disable MediaWiki extensions and skins. It allows those with the springboard
right to perform actions like installing and uninstalling skins and extensions in the wiki.
Installation
- Download and move the extracted
Springboard
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/Springboard - Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'Springboard' );
- Also, add the following line in LocalSettings.php:
require_once(__DIR__ . '/extensions/Springboard/includes/CustomLoader.php');
- Make sure to provide necessary permissions for the files and directories inside Springboard.
chmod -R a+rwx *
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
User rights
- springboard
- Allows users to use the "Springboard" page action in order to add or remove extensions and skins for the wiki. Defaults to:
$wgGroupPermissions['sysop']['springboard'] = true;
Configuration
- wgSpringboardURL
Source link to the YML file from where the curated extensions and skins related information can be pulled from.
$wgSpringboardURL = "https://your-custom-list-url";
Defaults to https://www.mediawiki.org/wiki/Recommended_revisions/1.43 (can be taken as an example too)
See also
Category:Site management extensions
Category:AdminLinks extensions
Category:All extensions
Category:Beta status extensions
Category:Extensions in Wikimedia version control
Category:Extensions which add rights
Category:Extensions with long-term support release branches compatibility policy
Category:Extensions with manual MediaWiki version
Category:GPL licensed extensions
Category:Site management extensions
Category:Special page extensions