Module:EcoVersion

From Eco - English Wiki
Revision as of 05:12, 19 April 2021 by ZeelNightwolf (talk | contribs) (Update 9.3.1)

Documentation


This module is a data file that is used to automate information throughout the Eco Wiki using various Lua Modules. If you would like to see more information generated on a data page request it on the Eco Contribution Wiki Discord server.

Usage

To use the ecoVersion string in wikitext, see Template:Eco version.

For usage through Lua, see the example code below.

-- Load data only once per page. (Do no use require())
local VersionData = mw.loadData("Module:EcoVersion")

-- Assert that some data was received, otherwise throw an error.
assert(VersionData.eco, "Failed to load data from Module:EcoVersion!")

-- You may then use data from this module in your script.
local ecoVersionData = VersionData.eco["eco"]

-- Eco Version : 0.9.3.1 beta release-204
-- Export Language: English

return {
    eco = {
        ['eco'] = {
                    ['ecoVersion'] = '0.9.3.1 beta release-204',
                    ['fullInfo'] = '0.9.3.1 beta release-204 Friday, 16 April 2021 13:35',
                    ['dataExportDate'] = '19/04/2021 12:00:00 AM',
        },
    },
}