• 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"

From Kancolle Wiki
Jump to navigation Jump to search
com>Ckwng
com>Ckwng
Line 5: Line 5:
 
function ShipInfo.Infobox(frame)
 
function ShipInfo.Infobox(frame)
 
local args = getArgs{frame = frame:getParent()}
 
local args = getArgs{frame = frame:getParent()}
return ShipInfoKai:Infobox(args["name"], args["model"])
+
return ShipInfoKai:Infobox(args)
 
end
 
end
  
 
return ShipInfo
 
return ShipInfo

Revision as of 01:33, 23 February 2015

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 = frame:getParent()}
	return ShipInfoKai:Infobox(args)
end

return ShipInfo