Module:Album image: Difference between revisions

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


function p._main(title)
function p._main(title)
if title == nil or title == '' then
return ''
end
local cargo = mw.ext.cargo
local cargo = mw.ext.cargo
local results = cargo.query(
local results = cargo.query(

Latest revision as of 23:18, 29 July 2023

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

local p = {}

function p._main(title)
	if title == nil or title == '' then
		return ''
	end
	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