Changes

Jump to: navigation, search

Extensions

692 bytes added, 18:36, 2 May 2017
==DynamicPageList==
Used for Bibliography pages. [[Bibliography/View_All_-_A|Example Bibliography/View_All_-_A]]
require_once "$IP/extensions/DynamicPageList/DynamicPageList.php";
ExtDynamicPageList::$maxResultCount = 1000;
==MobileFrontEnd==
Used to create the mobile view. Works with [[mediawiki:Mobile.css]].
require_once "$IP/extensions/MobileFrontend/MobileFrontend.php";
$wgMFAutodetectMobileView = true;
Also you need to ensure that the wiki is setup to use Short URL's
## http://www.mediawiki.org/wiki/Manual:Short_URL
$wgArticlePath = "{$wgScriptPath}/wiki/$1";
$wgUsePathInfo = true;
==MsUpload==
Used to help with bulk upload of pictures. It creates a drag and drop auto category upload.
require_once "$IP/extensions/MsUpload/MsUpload.php";
$wgMSU_showAutoCat = true; // If true, files uploaded while editing a category will be added to that category
==MultimediaViewer==
Used to create a lightbox image viewer for the full view. The mobile view of this is bundled in with the MobileFrontEnd extension. [[Sword_Scabbard_Chapes#/media/File:R516.jpg|Example Sword_Scabbard_Chapes#/media/File:R516.jpg]]
## Extension MultimediaViewer
require_once "$IP/extensions/CommonsMetadata/CommonsMetadata.php";
==ParserFunctions==
Used to enable logical 'if' statements and to give a level of logical flow. [[Template:Ref|Example Template:Ref]]
## Extension ParserFunctions
wfLoadExtension( 'ParserFunctions' );