Module:CountryData/cacheC: Difference between revisions

From Exordium Wiki
m (Changed protection settings for "Module:CountryData/cacheC": High-risk template or module: 8329 transclusions (more info) ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)))
 
m (1 revision imported from wikipedia:Module:CountryData/cacheC)
 
(No difference)

Latest revision as of 22:15, 5 September 2023

Documentation for this module may be created at Module:CountryData/cacheC/doc

local CountryData = require('Module:CountryData')
local pages = {'Denmark', 'Finland', 'Great_Britain', 'Hungary', 'Mexico', 'New_Zealand', 'Norway', 'Portugal', 'Romania', 'South_Africa', 'South_Korea', 'Ukraine'}
local p = {
    data = {}
}
local frame = mw.getCurrentFrame()

for _,v in ipairs(pages) do
    p.data[v] = CountryData.gettable(frame, v, {})
end

return p