This is the documentation page for Module:Version
Version stores all build versions of WARFRAME based on their update/hotfix designation.
On this Wiki, Version is used in:
Usage
Direct Invocation
{{#invoke:Version|function|input1|input2|...}}
Template
In template: {{#invoke:Ver|function|input1|input2|...}}
In articles: {{Ver|input1|input2|...}}
Module
local p = {}
local Ver = require('Module:Version')
local function func(input)
return Ver.getVersion(input)
end
Documentation
Package items
version._getVersionCategory(name)(function)- Gets the category page link associated with that version.
- Parameter:
nameVersion alias (e.g. 'U26' or 'H30.3.5') (string) - Returns: Version entry as seen in
/data(table) version.getVersion(name)(function)- Gets a version by name or by alias, case insensitive.
- Parameter:
name(string) - Returns: Version entry as seen in
/data(table) version.getVersionLink(frame)(function)- Gets a version's link.
- Parameter:
frame(table) - Returns: Wikitext of version article link (string)
version._getVersionLink(name, color, short)(function)- Gets a version's link.
- Parameters:
name(string)color(string)short(string)
- Returns: Wikitext of version article link (string)
version._getVersionDate(name)(function)- Gets a version's date.
- Parameter:
name(string) - Returns: ISO date (string)
version.getToCLines(frame)(function)- Creates all lines for table of contents.
- Parameter:
frame(table) - Returns: Wikitext of the table of contents (string)
version.getAllVersions(frame)(function)- Lists all versions of the game.
- Parameter:
frame(table) - Returns: Wikitext of version list (string)
version.lastVersion(frame)(function)- Returns the latest version of the game.
- Parameter:
frameFrame object (table) - Returns: Wikitext of version (string)
version.fullVersionList(frame)(function)- Returns full wikitable of WARFRAME builds.
- Parameter:
frameFrame object (table) - Returns: Wikitext of resultant wikitable (string)
Other items
shortToLink(ver)(function)- Creates a wikitext link based on the build version string.
- Parameter:
verBuild version string (e.g. "U27.0", "H22.5.1", "31.0.2", "Vanilla", "The Silver Grove", "SilGro", "TVW ") (string) - Returns: Wikitext link of update page (string)
- Created with Docbunto
See Also