mNo edit summary |
mNo edit summary |
||
Line 12: | Line 12: | ||
local fields = '_pageName, nationality' | local fields = '_pageName, nationality' | ||
local cargoArgs = { | local cargoArgs = { | ||
where = '_pageName = "' .. playerId .. '"' | where = '_pageName="' .. playerId .. '"' | ||
} | } | ||
local results = cargo.query(tables, fields, cargoArgs) | local results = cargo.query(tables, fields, cargoArgs) |
Revision as of 11:34, 3 October 2023
Documentation for this module may be created at Module:Person/Flag/doc
local Flags = require('Module:Flags')
local pFlag = {}
local cargo = mw.ext.cargo
function pFlag.makeFlag(flagArg, playerId, gameCategory)
-- Look up Cargo table for nationality string
if flagArg then
return Flags.icon( flagArg, gameCategory)
end
local tables = 'People'
local fields = '_pageName, nationality'
local cargoArgs = {
where = '_pageName="' .. playerId .. '"'
}
local results = cargo.query(tables, fields, cargoArgs)
mw.log('MIS PLAYERID ON: ')
mw.log(playerId )
mw.logObject(results)
if #results > 0 then
return Flags.icon( mw.text.split(results[1].nationality, ',')[1], gameCategory)
else
return nil
end
end
return pFlag