Extension:Springboard

Category:GPL licensed extensions
MediaWiki extensions manual
Springboard
Release status: betaCategory:Beta status extensions
Implementation Special page Category:Special page extensions
Description Springboard is an extension to MediaWiki that allows user to manage, install, enable and disable MediaWiki extensions and skins.
Author(s) Jayanth Vikash Saminathan, Naresh Kumar Babu, Sanjay Thiyagarajan (Techwizzietalk)
Maintainer(s) Techwizzie, TechieNK, Yaron_Koren
Latest version 0.1
Compatibility policy For every MediaWiki release that is a Long Term Support release there is a corresponding branch in the extension.Category:Extensions with long-term support release branches compatibility policy
MediaWiki 1.41+Category:Extensions with manual MediaWiki version
License GNU General Public License 2.0 or later
Download Category:Extensions in Wikimedia version control
  • $wgwgSpringboardURL
Translate the Springboard extension if it is available at translatewiki.net
Issues Open tasks · Report a bug
Category: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 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/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 *
  • Yes 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