« Module:Infobox/Fonctions/Bâtiment » : différence entre les versions
Aller à la navigation
Aller à la recherche
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 13 : | Ligne 13 : | ||
function p.mainimage(cat, defaultimage) | function p.mainimage(cat, defaultimage) | ||
if not cat then | if not cat then | ||
cat = 'Article à illustrer Bâtiment' | cat = 'Article à illustrer Bâtiment divers' | ||
end | end | ||
return general.mainimage(cat, defaultimage) | return general.mainimage(cat, defaultimage) |
Version du 24 septembre 2014 à 20:56
local p = {} local wikidatamod = require 'Module:Wikidata' local general = require 'Module:Infobox/Fonctions' local coordfunctions = require 'Module:Infobox/Fonctions/Géolocalisation'
--Titre function p.title() -- local class = en-tête par défaut à définir ici ? return general.title() end
--Image function p.mainimage(cat, defaultimage) if not cat then cat = 'Article à illustrer Bâtiment divers' end return general.mainimage(cat, defaultimage) end
function p.coordinates(coordspecs) return coordfunctions.coordinates(coordspecs) end
function p.architect() return { type = 'mixed', label = 'Architecte', value = 'architecte', property = 'P84' } end
function p.geoloc(params) return coordfunctions.geoloc(params) end
return p