Module:Infobox/Fonctions/Bâtiment : Différence entre versions

De Lagny-sur-Marne Wiki
Aller à : navigation, rechercher
Ligne 11 : Ligne 11 :
  
 
--Image
 
--Image
function p.mainimage()
+
function p.mainimage(cat, defaultimage)
return general.mainimage()
+
if not cat then
 +
cat = 'Article à illustrer Bâtiment'
 +
end
 +
return general.mainimage(cat, defaultimage)
 
end
 
end
  
function p.coordinates(params)
+
function p.coordinates(coordspecs)
return coordfunctions.coordinates(params)
+
return coordfunctions.coordinates(coordspecs)
 
end
 
end
  

Version du 24 septembre 2014 à 20:40

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(cat, defaultimage)
	if not cat then 
		cat = 'Article à illustrer Bâtiment'
	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