Manual:Footer

From MediaWiki.org
Jump to: navigation, search

Contents

[edit] Add links to the footer

As of 1.17 you can modify the list of links in the footer using the SkinTemplateOutputPageBeforeExec to modify the footerlinks arrays and setting new template keys for the values.

For example, putting this in your LocalSettings.php will add a new "Terms of Service" link after the disclaimer link.

$wgHooks['SkinTemplateOutputPageBeforeExec'][] = 'lfTOSLink';
function lfTOSLink( $sk, &$tpl ) {
        $tpl->set( 'termsofservice', $sk->footerLink( 'termsofservice', 'termsofservicepage' ) );
        $tpl->data['footerlinks']['places'][] = 'termsofservice';
        return true;
}

From there you can put "Terms of Service" in MediaWiki:Termsofservice for the link's text and in MediaWiki:Termsofservicepage define the title of the page that you want the Terms of Service link to point to.

Remember it may take a while to update due to MediaWiki caches.

[edit] Before 1.17

Before Mediawiki 1.17, to add or remove items from the footer on your MediaWiki page, you must edit the individual skin.

For example: if you go in to MonoBook.php (located by default in the skins folder) you will find the following code:

$footerlinks = array(
        'lastmod', 'viewcount', 'numberofwatchingusers', 'credits', 'copyright',
        'privacy', 'about', 'disclaimer', 'tagline',
);

In the above you can simply add and remove items from the array that you wish to appear in your footer. This must be done for each skin. It may take a while to update due to MediaWiki caches.

[edit] Customizing the Built-in items

You can also customize the individual build-in items by modifying certain pages or parameters:

[edit] Images

See $wgFooterIcons.

[edit] See also

Personal tools
Namespaces
Variants
Actions
Site
Support
Download
Development
Communication
Print/export
Toolbox