MediaWiki extensions manual
MultiBoilerplate
Release status: stable
Implementation User interface
Description Allows a boilerplate to be selected from a drop down box located above the edit form when editing pages.
Author(s) Robert Leverington, Dror S. [FFS] , Jhf2442
Latest version 2.2.1 (2022-02-09)
MediaWiki 1.35+
License GNU General Public License 2.0 or later
Download
README.md
CHANGELOG
Parameters
  • $wgMultiBoilerplateOptions
  • $wgMultiBoilerplateOverwrite
Hooks used
  • EditPage::showEditForm:initial
Quarterly downloads 33 (Ranked 137th)
Translate the MultiBoilerplate extension if it is available at translatewiki.net
Issues Open tasks · Report a bug

The MultiBoilerplate extension allows a boilerplate to be selected from a dropdown box located above the edit form. By default this shows only on creation of new pages. When loading a boilerplate, it will completely replace whatever text is already in the edit form. See README.md for more details.

Bugs and feature requests should be added to the extension's project page on Phabricator.

Installation

  • Download and place the file(s) in a directory called MultiBoilerplate in your extensions/ folder.
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'MultiBoilerplate' );
    
  • Configure at your convenience - you must at least set up the boilerplates.
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Configuration

Main configuration

The main configuration is of the available boilerplates; this is done in one of two ways:

  1. through $wgMultiBoilerplateOptions in LocalSettings.php, by filling the $wgMultiBoilerplateOptions array with a list of boilerplate names that correspond to templates, like so:
    $wgMultiBoilerplateOptions[ "My Boilerplate" ] = "Template:My Boilerplate";
    $wgMultiBoilerplateOptions[ "My Other Boilerplate" ] = "Template:My Other Boilerplate";
    
  2. Through system message MediaWiki:Multiboilerplate, which uses the following format:
    * My Boilerplate|Template:My Boilerplate
    

    Note: formatting the template entries as a list (i.e. including the leading asterisk) is required when using the MediaWiki:Multiboilerplate page. If this is not done, the entries will not be parsed properly and the templates will not show up. Headers (discussed below) are not required.

    You can also create headers inside the dropdown in order to separate boilerplates, by adding level 2 headers. For example:

    == Pretty Templates ==
    * My Boilerplate|Template:My Boilerplate
    == Ugly Templates ==
    * Their Boilerplate|Template:Their Boilerplate
    

Since version 2.1.1, it is possible to add wikilinks on this page without breaking the extension.

Additional configuration options

  • $wgMultiBoilerplateOverwrite: false by default. If true, shows the boilerplates dropdown even on pre-existing pages. The selected boilerplate will completely overwrite the current contents.

See also

This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.