Jump to content

Extension:Springboard

From mediawiki.org
MediaWiki extensions manual
Springboard
Release status: stable
Implementation Special page
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 1.0.1 (2025-12-04)
Compatibility policy For every MediaWiki release that is a Long Term Support release there is a corresponding branch in the extension.
MediaWiki 1.41+
License GNU General Public License 2.0 or later
Download
  • $wgSpringboardURL
springboard
Translate the Springboard extension if it is available at translatewiki.net
Issues Open tasks · Report a bug

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

[edit]
  • 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

[edit]
springboard
Allows users to use the "Springboard" page action to add or remove extensions and skins for the wiki. Defaults to:
$wgGroupPermissions['sysop']['springboard'] = true;

Configuration

[edit]
$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://github.com/CanastaWiki/RecommendedRevisions/commits/main/1.43.yaml (can be taken as an example too)

Version history

[edit]
  • 0.1 - - Initial version
  • 1.0 - - Many improvements to code and functionality
  • 1.0.1 - - Updated to latest version of MW 1.43 Recommended Revisions, with many extension and skin updates; code improvements

See also

[edit]