Module:Infobox/Localdata : Différence entre versions
m (A protégé « Module:Infobox/Localdata » : utilisé sur 179 452 pages ([Modifier=Autoriser uniquement les utilisateurs autopatrolled] (infini) [Renommer=Autoriser uniquement les utilisateurs autopatrolled] (infini))) |
|||
(3 révisions intermédiaires par un autre utilisateur non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
local localdata = {} | local localdata = {} | ||
+ | local wikidata = require('Module:Wikidata/Outils') | ||
local frame = mw.getCurrentFrame() | local frame = mw.getCurrentFrame() | ||
local modulename = frame.args.nom | local modulename = frame.args.nom | ||
− | local parent = frame:getParent() | + | local parent = frame:getParent() or frame |
local templatename = parent:getTitle() -- au cas où il soit différent du nom du module | local templatename = parent:getTitle() -- au cas où il soit différent du nom du module | ||
local params = parent.args | local params = parent.args | ||
Ligne 16 : | Ligne 17 : | ||
localdata.modulename = modulename | localdata.modulename = modulename | ||
− | -- load wikidata item | + | -- load wikidata item: |
− | + | localdata.item = wikidata.getEntity(localdata.wikidata) | |
− | |||
− | |||
return localdata | return localdata |
Version actuelle datée du 25 septembre 2016 à 18:36
La documentation pour ce module peut être créée à Module:Infobox/Localdata/doc
local localdata = {} local wikidata = require('Module:Wikidata/Outils') local frame = mw.getCurrentFrame() local modulename = frame.args.nom local parent = frame:getParent() or frame 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