ATTENTION! The process of updating WiKi to version Eco 10.x has begun. Those wishing to participate can find out more Information on our ECO Contribution Wiki Discord.
From April 26 to May 12, errors may occur in the Wiki, as we will be carrying out a major update to the information processing modules.

Module:EcoVersion

From Eco - English Wiki
Revision as of 11:02, 16 January 2022 by ZeelNightwolf (talk | contribs) (Update 9.4.5)

Documentation

DO NOT manually edit this page!

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.4.5 beta release-278
-- Export Language: English

return {
    eco = {
        ['eco'] = {
                    ['ecoVersion'] = '0.9.4.5 beta release-278',
                    ['fullInfo'] = '0.9.4.5 beta release-278 Friday, January 7, 2022 6:32 PM',
                    ['dataExportDate'] = '16/01/2022 12:00:00 AM',
        },
    },
}