Module:Album image

Revision as of 03:03, 11 June 2020 by MusikAnimal (talk | contribs)

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

local p = {}

function p._main(title)
	local cargo = mw.ext.cargo
	local results = cargo.query(
		'albums',
		'cover',
		{ where = 'name = "' .. title .. '"' }
	)
	
	for r = 1, #results do
		local result = results[r]
		return result['cover']
	end
end

function p.main(frame)
	return p._main(frame.args[1])
end

return p