Module:Infobox/Fonctions
< Module:Infobox
Révision datée du 24 septembre 2014 à 15:29 par Zolo (discussion)
La documentation pour ce module peut être créée à Module:Infobox/Fonctions/doc
-- Fonctions communes à diverses infobox local wikidata = require('Module:Wikidata') local d = require('Module:Wikidata/Dates') local p = {} function p.title() return { type = 'title', value = 'nom', class = class, } end function p.mainimage() return { type = 'images', imageparameters = {'image'}, defaultimage = {defaultimage}, captionparameter = 'légende', defaultcaption = function() return defaultcaption end, property = 'P18', numval = 1, } end -- Liens externes function p.website() --texte libre [http://example.org example.org] ou url seule return { type = 'mixed', label = "Site web", wikidata = wikidata.formatStatements({property='p856', first = "true"}), value = function() return require("Module:Weblink").makelink(localdata['site web']) end } end return p