Module:Icon: Difference between revisions

From Eco - English Wiki
[checked revision][checked revision]
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 6: Line 6:


     local args = Utils.normaliseArgs(param)
     local args = Utils.normaliseArgs(param)
     if args.name == nil or args.name == '' then return 'Module:IconUtils \'name\' must be specified.' end
     local itemID = Utils.CheckId(args.name)


     Icon = args.name .. '_Icon.png'
     return IconUtils.main{ name = args.name, id = itemID , size = args.size , style = args.style , link = args.link }
     return Icon
      
end
end


return p
return p

Latest revision as of 09:24, 8 December 2024

Documentation for this module may be created at Module:Icon/doc

local p = {}

function p.main(param)
    local Utils = require('Module:Utils')
    local IconUtils = require('Module:IconUtils')

    local args = Utils.normaliseArgs(param)
    local itemID = Utils.CheckId(args.name)

    return IconUtils.main{ name =  args.name, id = itemID , size = args.size , style = args.style , link = args.link }
    
end

return p