Module:Album image: Difference between revisions

From SPCodex, The Smashing Pumpkins wiki
No edit summary
No edit summary
Line 16: Line 16:


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


return p
return p

Revision as of 03:03, 11 June 2020

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