Module:Infobox/Localdata

De Lagny-sur-Marne Wiki
Version datée du 14 septembre 2016 à 22:21 par 0x010D (discussion | contributions) (accès direct à Module:Wikidata/Outils ; suppression test déjà fait par la fonction appelée)
Aller à la navigation Aller à la recherche

local localdata = {}

local wikidata = require('Module:Wikidata/Outils') 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: localdata.item = wikidata.getEntity(localdata.wikidata)

return localdata