Template:MainMenu
Line 4: | Line 4: | ||
==Template== | ==Template== | ||
{{Warning|Other Locales|For now, this menu has to be made for English, then duplicated once for other languages, which is a huge bummer<br>So for now, when you change this menu, make sure you scroll down and change the duplicate}} | {{Warning|Other Locales|For now, this menu has to be made for English, then duplicated once for other languages, which is a huge bummer<br>So for now, when you change this menu, make sure you scroll down and change the duplicate}} | ||
− | |||
{{Note|If you need a sub menu, add it here using the guide below!}} | {{Note|If you need a sub menu, add it here using the guide below!}} | ||
− | <onlyinclude><div | + | <onlyinclude> |
+ | <div class="portal" id="p-WoWRoster-Menu"> | ||
+ | <h5>[[Main_Page|Main Page]]</h5> | ||
+ | <div class="body"> | ||
{{#ifeq:{{SUBPAGENAME}}|{{BASEPAGENAME}}| | {{#ifeq:{{SUBPAGENAME}}|{{BASEPAGENAME}}| | ||
<!-- BEGIN ENGLISH MENU --> | <!-- BEGIN ENGLISH MENU --> | ||
Line 107: | Line 109: | ||
* [[Special:Categories|Categories]] | * [[Special:Categories|Categories]] | ||
− | </div></onlyinclude> | + | </div></div></onlyinclude> |
==Syntax== | ==Syntax== | ||
Line 147: | Line 149: | ||
If the page does not exist for that locale, then it should link to the English version | If the page does not exist for that locale, then it should link to the English version | ||
− | The syntax for this is quite complex as we detect if the translated page exists | + | The syntax for this is quite complex as we detect if the translated page exists<br> |
+ | That is why a template is used to enter menu links | ||
− | + | <pre>[[PageName|Page Name Text]]</pre> | |
− | <pre> | + | Becomes |
+ | <pre>{{MainMenuL|PageName|Page Name Text}}</pre> | ||
Some links need to stay linked to the English version, such as the Coding Standards, The Team, and the AddOn SDK<br> | Some links need to stay linked to the English version, such as the Coding Standards, The Team, and the AddOn SDK<br> | ||
These page may be changed on every release version of our software or even between versions | These page may be changed on every release version of our software or even between versions |
Revision as of 21:58, 13 August 2011
Important note: When you edit this page, you agree to release your contribution into the public domain. |
Contents |
Template
Syntax
This is the Main Menu for our wiki
It uses a template parameter and conditionals to display sub menus
The Roster menu is called like so
{{MainMenu|Roster}}
MainMenu is the name of this template
Roster is the first parameter
{{#ifeq:{{{1}}}|Roster| ** [[SomePage|SomePage]] |}}
This is a conditional that determines if we are printing a sub menu
{{#ifeq:{{{1}}}|Roster|
This means if the first template parameter equals Roster, then display the sub menu
|}}
This closes the conditional
If we want a sub menu in a sub menu, then we use more parameters when calling the template
{{MainMenu|Roster|Addons}}
MainMenu is the name of this template
Roster is the first parameter
Addons is the second parameter
{{#ifeq:{{{1}}}|Roster| ** [[SomePage|SomePage]] {{#ifeq:{{{2}}}|Addons| *** [[AnotherPage|AnotherPage]] |}} |}}
The Other Locale Duplicate
To make the menu keep linking to the same language, we copy the menu once and add "/{{SUBPAGENAME}}" to the link
This will make the menu link to the pages in the menu, keeping the same locale
If the page does not exist for that locale, then it should link to the English version
The syntax for this is quite complex as we detect if the translated page exists
That is why a template is used to enter menu links
[[PageName|Page Name Text]]
Becomes
{{MainMenuL|PageName|Page Name Text}}
Some links need to stay linked to the English version, such as the Coding Standards, The Team, and the AddOn SDK
These page may be changed on every release version of our software or even between versions