Jump to content

Module:Infobox road

Frae Wikipedia, the free beuk o knawledge
Reveesion aes o 14:23, 25 Apryle 2014 bi AmaryllisGardener (Collogue | contribs) (Cræftit page wi "local p = {} function p.headerStyle(frame) local pframe = frame:getParent() local config = frame.args -- the arguments passed BY the template, in the wikitext of the t...")
(diff) ← Aulder reveision | see current reveision (diff) | Newer reveision → (diff)
local p = {}

function p.headerStyle(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 deleted = args.decommissioned or args.deleted or ''
    if deleted ~= '' then
        return "background:#AAA;"
    end
    local colors = require"Module:Infobox road/color"
    return colors.color(frame)
end

return p