2017-11-22 19:59:00 +00:00
|
|
|
WikiEditor provides enhancements to the MediaWiki edit page
|
2010-09-21 20:26:19 +00:00
|
|
|
|
2017-11-22 19:59:00 +00:00
|
|
|
For installation, once the code is copied into your extensions directory, you can load it for your
|
|
|
|
wiki by adding to LocalSettings.php the line:
|
2010-09-16 23:30:21 +00:00
|
|
|
|
2019-02-23 16:36:49 +00:00
|
|
|
wfLoadExtension( 'WikiEditor' );
|
2010-09-16 23:30:21 +00:00
|
|
|
|
2017-11-22 19:59:00 +00:00
|
|
|
By default, when installed this extension will be available to all users, and logged-in users can
|
|
|
|
disable it from their preferences. If you wish all users to have it, and be unable to disable it,
|
|
|
|
add it to $wgHiddenPrefs in your LocalSettings.php:
|
2010-09-16 23:30:21 +00:00
|
|
|
|
2017-11-22 19:59:00 +00:00
|
|
|
$wgHiddenPrefs[] = 'usebetatoolbar';
|
2010-09-16 23:30:21 +00:00
|
|
|
|
2017-11-22 19:59:00 +00:00
|
|
|
More can be found on the extension's page: https://www.mediawiki.org/wiki/Extension:WikiEditor
|