پودمان:Infobox road/map/تمرین
ظاهر
اینجا صفحهٔ تمرین پودمان برای پودمان:Infobox road/map (تفاوت) است. |
local p = {}
local mapsizes = {["DEU"] = "200", ["USA"] = "290x172"}
function p.map(frame)
local pframe = frame:getParent()
local config = frame.args -- the arguments passed BY the template, in the wikitext of the template itself
local args = pframe.args -- the arguments passed TO the template, in the wikitext that transcludes the template
local map_custom = args.map_custom or args['نقشه سفارشی'] or ''
local map = args.map or args['نقشه'] or ''
if map_custom == "yes" or map_custom == "بله" then
return '<span style="white-space:nowrap;">' .. map .. '</span>'
end
if map == '' then
local entity = mw.wikibase.getEntity() or {}
local claims = entity.claims or {}
local mapProp = claims.p15
if not mapProp or mapProp[0].mainsnak.snaktype ~= 'value' then
return ""
end
map = mapProp[0].mainsnak.datavalue.value
end
local filecode = "[[پرونده:" .. map .. "|"
local countrymod = require"Module:Infobox road/meta/mask/country"
local countryarg = args.country or args['کشور']
local state = args.state or args['ایالت'] or args.province or args['استان']
local country = ''
if countryarg and state then
country = countrymod._country(state, countryarg)
end
local mapsize = mapsizes[country] or '290'
local alt = args.map_alt or args['جایگزین نقشه'] or ''
filecode = filecode .. mapsize .. 'px|جایگزین=' .. alt .. ']]'
return filecode
end
return p