« Module:Infobox/Localdata » : différence entre les versions

De Lagny-sur-Marne Wiki
Aller à la navigation Aller à la recherche
0x010D (discussion | contributions)
Aucun résumé des modifications
0x010D (discussion | contributions)
Aucun résumé des modifications
Ligne 1 : Ligne 1 :
local localdata = {}
local localdata = {}


local wikidata = require('Module:Interface Wikidata').fromLua
local frame = mw.getCurrentFrame()
local frame = mw.getCurrentFrame()
local modulename =  frame.args.nom
local modulename =  frame.args.nom

Version du 12 septembre 2016 à 05:47

local localdata = {}

local wikidata = require('Module:Interface Wikidata').fromLua local frame = mw.getCurrentFrame() local modulename = frame.args.nom local parent = frame:getParent() local templatename = parent:getTitle() -- au cas où il soit différent du nom du module local params = parent.args

-- fill-up global variable localdata using params for i, j in pairs(params) do if j and mw.text.trim(j) ~= then -- empty parameters are ignored localdata[i] = j end end localdata.templatename = templatename localdata.modulename = modulename

-- load wikidata item as a global variable: if localdata.wikidata ~= '-' then localdata.item = wikidata.getEntity(localdata.wikidata) end

return localdata