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

From Kancolle Wiki
Jump to navigation Jump to search
com>Ckwng
com>Ckwng
(Change infobox call)
Line 8: Line 8:
 
local args = getArgs{frame = frame:getParent()}
 
local args = getArgs{frame = frame:getParent()}
 
_prepareEquipmentInfoKai()
 
_prepareEquipmentInfoKai()
return EquipmentInfoKai:Infobox(args["name"])
+
return EquipmentInfoKai:Infobox(args)
end
 
 
 
function EquipmentInfo._Infobox(frame)
 
local args = getArgs{frame = frame}
 
_prepareEquipmentInfoKai()
 
return EquipmentInfoKai:Infobox(args["name"])
 
 
end
 
end
  

Revision as of 23:43, 14 June 2015

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

local EquipmentCardKai = false
local EquipmentInfoKai = false
local getArgs = require('Module:GetArgs')

local EquipmentInfo = {}

function EquipmentInfo.Infobox(frame)
	local args = getArgs{frame = frame:getParent()}
	_prepareEquipmentInfoKai()
	return EquipmentInfoKai:Infobox(args)
end

function _prepareEquipmentInfoKai()
	if not EquipmentInfoKai then
		EquipmentInfoKai = require('Module:EquipmentInfoKai')
	end
end

function EquipmentInfo.Card(frame)
	local args = getArgs{frame = frame:getParent()}
	_prepareEquipmentCardKai()
	return EquipmentCardKai:Card(args)
end

function _prepareEquipmentCardKai()
	if not EquipmentCardKai then
		EquipmentCardKai = require('Module:EquipmentCardKai')
	end
end

return EquipmentInfo