Module:Infobox road junction

கட்டற்ற கலைக்களஞ்சியமான விக்கிப்பீடியாவில் இருந்து.

Documentation for this module may be created at Module:Infobox road junction/doc

local p = {}

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 = args.map or ''
    if map == '' then
        local entity = mw.wikibase.getEntity() or {}
        local claims = entity.claims or {}
        local mapProp = claims.p15
        if not mapProp then
            return ""
        end
        map = mapProp[0].mainsnak.datavalue.value
    end
    local alt = args.map_alt or ''
    return "[[File:" .. map .. "|250px|alt=" .. alt .. "]]"
end

return p
"https://ta.wikipedia.org/w/index.php?title=Module:Infobox_road_junction&oldid=1987096" இலிருந்து மீள்விக்கப்பட்டது