Module:IconUtils: Difference between revisions

From Eco - English Wiki
[checked revision][checked revision]
No edit summary
No edit summary
Line 1: Line 1:
local p = {}
local p = {}


function p.main(name,style,link,size,type)
function p.main(param)
local Utils = require('Module:Utils')
local Utils = require('Module:Utils')
local itemData = mw.loadData("Module:ItemData")
local itemData = mw.loadData("Module:ItemData")
local Icon = ''
local Icon = ''


     local itemTable = itemData.items[name]
    local args = Utils.normaliseArgs(param)
    if args.name == nil or args.name == '' then
        return '\'name\' must be specified.'
    end
     local itemTable = itemData.items[args.name]
     if itemTable == nil then
     if itemTable == nil then
         return name .. ' could not be found '
         return args.name .. ' could not be found '
     end
     end



Revision as of 08:49, 14 June 2024

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

local p = {}

function p.main(param)
local Utils = require('Module:Utils')
local itemData = mw.loadData("Module:ItemData")
local Icon = ''

    local args = Utils.normaliseArgs(param)
    if args.name == nil or args.name == '' then
        return '\'name\' must be specified.'
    end
    local itemTable = itemData.items[args.name]
    if itemTable == nil then
        return args.name .. ' could not be found '
    end

return Icon
end

return p