Difference between revisions of "Footer Examples"

From Tweeki
Jump to: navigation, search
Line 87: Line 87:
  
 
{{footer-settings
 
{{footer-settings
   |config-options=
+
   |config-options=<pre>
 
$wgTweekiSkinSpecialElements['FOOTER'] = 'myFooter';
 
$wgTweekiSkinSpecialElements['FOOTER'] = 'myFooter';
  
 
function myFooter( $skin, $context ) {
 
function myFooter( $skin, $context ) {
 
     echo 'My custom footer.';
 
     echo 'My custom footer.';
}
+
}</pre>
 
   |content=My custom footer.
 
   |content=My custom footer.
 
}}
 
}}

Revision as of 21:20, 10 March 2017

Default

By default, footer-info is hidden for all users, and footer-custom (with a login link as standard content) will only be shown to anonymous users.

This is how the footer looks for anonymous users:

CONFIG Messages Configuration Options
  • MediaWiki:Tweeki-footer: FOOTER
  • MediaWiki:Tweeki-footer-custom: LOGIN
$wgTweekiSkinHideAll['footer-info'] = true;

$wgTweekiSkinHideLoggedin['footer-custom'] = true;

RESULT

Settings for tweeki.thai-land.at

CONFIG Messages Configuration Options
$wgTweekiSkinHideAll['footer-icons'] = true;
RESULT

Show footer-info

footer-info contains information about the time of the last edit and about the copyright.

You can additionally set $wgMaxCredits to a non-zero value to show one, some or all of the contributors to a page.


CONFIG Messages Configuration Options
$wgTweekiSkinHideAll['footer-info'] = false;
RESULT

Add Custom Links

CONFIG Messages Configuration Options
  • MediaWiki:Tweeki-footer-custom: My Page
$wgTweekiSkinHideLoggedin['footer-custom'] = false;
RESULT

Show Only Custom Links

You can add as many links as you wish using standard button markup.

CONFIG Messages Configuration Options
  • MediaWiki:Tweeki-footer-custom: My Page,Another Page
$wgTweekiSkinHideLoggedin['footer-custom'] = false;

$wgTweekiSkinHideAll['footer-places'] = true;

RESULT

Completely customize the footer

If you want complete control over the footer's content, you should use the $wgTweekiSkinSpecialElements configuration setting. Define your own function in LocalSettings.php or in an extension that directly outputs the HTML code for your footer.


CONFIG Messages Configuration Options
$wgTweekiSkinSpecialElements['FOOTER'] = 'myFooter';

function myFooter( $skin, $context ) {
    echo 'My custom footer.';
}
RESULT