Skip to content

Extension for mediawiki's MobileFrontend to add special pages like "Recent changes" or "NewFiles" to the mobile discovery menu.

License

Notifications You must be signed in to change notification settings

fuerthwiki/MobileSpecialPages

Repository files navigation

MobileSpecialPages

Extension for mediawiki's MobileFrontend to add special pages like "Recent changes" or "NewFiles" to the mobile discovery menu.

Beispiel zur Verwendung in der LocalSettings.php:

## custom extension to add special-pages to the mobile menu
## see https://github.com/mojoaxel/MobileSpecialPages
wfLoadExtension( 'MobileSpecialPages' );
$wgMobileSpecialPages['discovery'] = array(
  // Add "In der Nähe" entry using the css-classes from the original nearby entry.
  'nearme' => array(
    'In der Nähe',
    '/wiki/index.php/FürthWiki:In_der_Nähe',
    'mw-ui-icon mw-ui-icon-before mw-ui-icon-nearby nearme'
  ),
  // Add link to all maps
  'maps' => array(
    'Karten',
    '/wiki/index.php/FürthWiki:Maps',
    'mw-ui-icon mw-ui-icon-before mw-ui-icon-maps maps'
  ),
  // Enable the custom entry "Spezial:Letzte_Änderungen"
  'RECENTCHANGES' => array(),
  // Enable the custom entry "Spezial:Dateien"
  'IMAGELIST' => array()
);
$wgMobileSpecialPages['sitelinks'] = array(
  'verein' => array('Förderverein', '/verein/'),
  'contact' => array('Kontakt', 'mailto:vorstand@mywiki.de')
);

About

Extension for mediawiki's MobileFrontend to add special pages like "Recent changes" or "NewFiles" to the mobile discovery menu.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published