Module:Infobox/Fonctions/Bâtiment : Différence entre versions
< Module:Infobox | Fonctions
Ligne 1 : | Ligne 1 : | ||
local p = {} | local p = {} | ||
− | local wikidatamod = require | + | local wikidatamod = require 'Module:Wikidata' |
− | local general = require | + | local general = require 'Module:Infobox/Fonctions' |
− | local | + | local coordfunctions = require 'Module:Infobox/Fonctions/Géolocalisation' |
--Titre | --Titre | ||
function p.title() | function p.title() | ||
− | -- local class = en-tête par défaut à définir ici ? | + | -- local class = en-tête par défaut à définir ici ? |
return general.title() | return general.title() | ||
end | end | ||
Ligne 16 : | Ligne 16 : | ||
function p.coordinates(params) | function p.coordinates(params) | ||
− | + | return coordfunctions.coordinates(params) | |
− | return | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
end | end | ||
Ligne 77 : | Ligne 28 : | ||
end | end | ||
− | function p.geoloc() | + | function p.geoloc(params) |
− | return | + | return coordfunctions.geoloc(params) |
− | |||
− | |||
− | |||
− | |||
− | |||
end | end | ||
+ | |||
return p | return p |
Version du 24 septembre 2014 à 14:12
La documentation pour ce module peut être créée à Module:Infobox/Fonctions/Bâtiment/doc
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() return general.mainimage() end function p.coordinates(params) return coordfunctions.coordinates(params) 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