Jump to content

Module:Data: Difference between revisions

From Wikipedia, the free encyclopedia
Jackmcbarn (talk | contribs)
redo how this works completely
m Protected Module:Data: Highly visible template ([Edit=Allow only template editors and admins] (indefinite) [Move=Allow only template editors and admins] (indefinite))
(No difference)

Revision as of 01:14, 28 October 2014

local mt = {}

function mt.__index(t, k)
	return function(frame)
		local data = mw.loadData(k)
		for _,v in ipairs(frame.args) do
			data = data[v]
		end
		return data
	end
end

return setmetatable({}, mt)