Extension:MsInsert

MediaWiki extensions manual
MsInsert
Release status: stable
Implementation User interface
Description Adds a dropdown menu for inserting into the editor the content of certain pages
Author(s) Martin Schwindl, Martin Keyler
Maintainer(s) Sophivorus
Latest version 3.2 (2020-04-16)
MediaWiki 1.21+
PHP 5.3+
License GNU General Public License 2.0 or later
Download
  • $wgTemplates
Quarterly downloads 3 (Ranked 157th)
Translate the MsInsert extension if it is available at translatewiki.net

The MsInsert extension adds a dropdown menu to the editor (both the WikiEditor and the regular editor) that allows you to insert into the wikitext the content of any wiki page listed in the dropdown menu.

The wiki pages are added to the dropdown menu from LocalSettings.php.

Installation edit

  • Download and place the file(s) in a directory called MsInsert in your extensions/ folder.
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'MsInsert' );
    
  •   Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

To users running MediaWiki 1.24 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.24 and earlier), instead of wfLoadExtension( 'MsInsert' );, you need to use:

require_once "$IP/extensions/MsInsert/MsInsert.php";

Configuration edit

To add a page to the dropdown menu, add it to the $wgTemplates array in your LocalSettings.php, like so:

$wgTemplates = [ 'Template:Test', 'Main Page', 'Talk:Main Page' ];

Or alternatively:

$wgTemplates[] = 'Template:Test';
$wgTemplates[] = 'Main Page';
$wgTemplates[] = 'Talk:Main Page';

If the page does not exist yet, then it will not be added to the dropdown menu, even if it's listed in the $wgTemplates array. By default, the array is empty.

Usage edit

Once a page has been added to the $wgTemplates, it will appear listed in the dropdown menu whenever you edit a page. By selecting it in the dropdown menu, the extension will fetch its contents and insert them into the wikitext, wherever you had the cursor.

See also edit