Template:MainMenu
Line 153: | Line 153: | ||
==The Other Locale Duplicate== | ==The Other Locale Duplicate== | ||
− | To make the menu keep linking to the same language, we copy the menu once and add "/<nowiki>{{SUBPAGENAME}}</nowiki>" to the link | + | To make the menu keep linking to the same language, we copy the menu once and add "/<nowiki>{{SUBPAGENAME}}</nowiki>" to the link<br> |
− | + | This will make the menu link to the pages in the menu, keeping the same locale<br> | |
− | 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 | If the page does not exist for that locale, then it should link to the English version | ||
Revision as of 06:10, 10 February 2008
Important note: When you edit this page, you agree to release your contribution into the public domain. |
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
Each link needs to look like this:
{{#ifexist: PageName/{{SUBPAGENAME}}|[[PageName/{{SUBPAGENAME}}|Page Name Text]]|[[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