Difference between revisions of "Configuration"
From Tweeki
Line 2: | Line 2: | ||
This options can be set in LocalSettings.php (after the inclusion of tweeki.php): | This options can be set in LocalSettings.php (after the inclusion of tweeki.php): | ||
− | + | <code><nowiki>$wgTweekiSkinHideAll = array();</nowiki></code> | |
:This variable can be used to hide elements from everybody. The [[#Tweekihide parser function|<nowiki>{{#tweekihide}}</nowiki> parser function]] will add to this array. Only hiding of elements that are also listed in <nowiki>$wgTweekiSkinHideable</nowiki> will actually be put into effect. | :This variable can be used to hide elements from everybody. The [[#Tweekihide parser function|<nowiki>{{#tweekihide}}</nowiki> parser function]] will add to this array. Only hiding of elements that are also listed in <nowiki>$wgTweekiSkinHideable</nowiki> will actually be put into effect. | ||
− | + | <code><nowiki>$wgTweekiSkinHideable = array( 'firstHeading' );</nowiki></code> | |
:In order to prevent abuse, only elements listed in this array are allowed to be hidden by the [#Tweekihide parser function|<nowiki>{{#tweekihide}}</nowiki> parser function]]. | :In order to prevent abuse, only elements listed in this array are allowed to be hidden by the [#Tweekihide parser function|<nowiki>{{#tweekihide}}</nowiki> parser function]]. | ||
− | + | <code><nowiki>$wgTweekiSkinHideAnon = array();</nowiki></code> | |
:Elements in this array will be hidden for users who are not logged in. | :Elements in this array will be hidden for users who are not logged in. | ||
− | + | <code><nowiki>$wgTweekiSkinHideNonPoweruser = array( 'TOOLBOX', 'EDIT-EXT-special' );</nowiki></code> | |
:Elements in this array will only be shown to users who have chosen in their preferences to be "powerusers". | :Elements in this array will only be shown to users who have chosen in their preferences to be "powerusers". | ||
− | + | <code><nowiki>$wgTweekiSkinFooterIcons = true;</nowiki></code> | |
:If set to false, the icons in the footer will be replaced by text aquivalents. | :If set to false, the icons in the footer will be replaced by text aquivalents. | ||
Revision as of 08:51, 19 May 2013
Default Configuration Options
This options can be set in LocalSettings.php (after the inclusion of tweeki.php):
$wgTweekiSkinHideAll = array();
- This variable can be used to hide elements from everybody. The {{#tweekihide}} parser function will add to this array. Only hiding of elements that are also listed in $wgTweekiSkinHideable will actually be put into effect.
$wgTweekiSkinHideable = array( 'firstHeading' );
- In order to prevent abuse, only elements listed in this array are allowed to be hidden by the [#Tweekihide parser function|{{#tweekihide}} parser function]].
$wgTweekiSkinHideAnon = array();
- Elements in this array will be hidden for users who are not logged in.
$wgTweekiSkinHideNonPoweruser = array( 'TOOLBOX', 'EDIT-EXT-special' );
- Elements in this array will only be shown to users who have chosen in their preferences to be "powerusers".
$wgTweekiSkinFooterIcons = true;
- If set to false, the icons in the footer will be replaced by text aquivalents.
Tweekihide parser function
Usage: {{#tweekihide:element1|element2|...}}