Prints either the name or language of the current version as a string.
Syntaksi
{CurrentLanguage(
type: string
)}Näkyvyys
Toimii näkyvyydessä: globaali
Tags with global scope can be used on any template and in any tag.
Creating the language navigation menu
{LanguageNavigation(
before: '
<ul class="NavigationList DropdownNavigation" id="LanguageNavigation">
<li>
<a>
<span class="Icon LanguageIcon"></span>{CurrentLanguage}
</a>',
after: '
</li>
</ul>'
)}In the MyCashflow default theme, the language navigation menu is implemented by using two Interface tags: {LanguageNavigation} and {CurrentLanguage}.
The {LanguageNavigation} tag prints a list of all languages of the online store. Only the name is printed for each language, which is the default output of the {CurrentLanguage} tag. Before the list, a title is added to the menu as an li element by using the {CurrentLanguage} tag, which displays the current version's name. All other versions are printed inside the li element, so that the list can easily be used as a drop-down menu.
The image shows how the menu has been implemented in the MyCashflow default theme:

Attribuutit
after/before:By using the
afterandbeforeattributes you can define content that is output either after or before the tag's output.Allowed values:HTML and Interface markup.
E.g.
before:'<p>Tämä merkkaus näkyy ennen tagin omaa sisältöä.</p>'after:'<p>Tämä taas näkyy tagin oman sisällön jälkeen.</p>'
If the tag does not produce any content, neither the content of the
afterandbeforeattributes will be output.or:Defines alternative content that is displayed if the tag itself does not produce any content.
Allowed values:HTML and Interface markup.
E.g.
or:'Sisältöä ei löytynyt.'type:Defines which one to print: version name or selected language.
Allowed values:
- 'language': Prints the language of the version as a string.
- 'name': Prints the name of the version (default value).
