- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
Difference between revisions of "Module:ShipInfo"
Jump to navigation
Jump to search
com>Ckwng (Convert into invokable entry point) |
com>Ckwng (Explicitly get args) |
||
Line 4: | Line 4: | ||
function ShipInfo.Infobox(frame) | function ShipInfo.Infobox(frame) | ||
− | return ShipInfoKai:Infobox( | + | local args = getArgs(frame) |
+ | return ShipInfoKai:Infobox(args["name"], args["model"]) | ||
end | end | ||
return ShipInfo | return ShipInfo |
Revision as of 07:14, 14 December 2014
Documentation for this module may be created at Module:ShipInfo/doc
local ShipInfo = {}
local ShipInfoKai = require('Module:ShipInfoKai')
local getArgs = require('Module:GetArgs')
function ShipInfo.Infobox(frame)
local args = getArgs(frame)
return ShipInfoKai:Infobox(args["name"], args["model"])
end
return ShipInfo