Module:Used by/Sandbox

From Team Fortress Wiki
Jump to: navigation, search

Documentation for this module may be created at Module:Used by/Sandbox/doc

local p = {}

function common_string(args)
  return mw.getCurrentFrame():expandTemplate{title='Common string', args=args}
end

function p.classes(frame)
    local args = frame.args
    local count = 0
    for _ in pairs(args) do 
        count = count + 1 
    end
    if count == 0 then
        args = frame:getParent().args
        for _ in pairs(args) do 
            count = count + 1 
        end
    end
  
    local first = table.remove(args, 1)
    count = count - 1
    if first == 'all' then
        return common_string{'infobox-used-by-all'}
    elseif first == 'all-except' then
        return common_string{'infobox-used-by-all-except-' .. count, unpack(args)}
    else
        return common_string{'infobox-used-by-' .. count, unpack(args)}
    end
end

return p