Module:Data

From
Revision as of 01:14, 28 October 2014 by sa>MusikAnimal (Protected Module:Data: Highly visible template ([Edit=Allow only template editors and admins] (indefinite) [Move=Allow only template editors and admins] (indefinite)))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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

Script error: Lua error: Cannot create process: proc_open(/dev/null): failed to open stream: Operation not permitted

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)