This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Template:NextLink

From OWASP
Revision as of 17:51, 8 September 2010 by Thomas Herlea (talk | contribs) (Handled the case when the first parameter is omitted or empty)

Jump to: navigation, search

Purpose

Generates a "Next" link to the URL/page given in the first parameter with a link label equal to the value of the second parameter, if present, otherwise with a link label equal to the value of the first parameter. If the first parameter is absent, the label [This is the first page] is generated.

Usage

{{NextLink|link|label}}

Code

{{ #if: {{{1|}}}
   | [[{{{1}}}|»»{{{2|{{{1}}}}}}»»]]
   | [This is the first page]
}}