Module:Sandbox: Difference between revisions

From Minecraft JE Data
Jump to navigation Jump to search
No edit summary
No edit summary
Line 22: Line 22:
function p.test_statement(frame)
function p.test_statement(frame)
local id = frame.args.id;
local id = frame.args.id;
return mw.wikibase.getAllStatements(id, 'P4' )
mw.logObject( mw.wikibase.getAllStatements(id, 'P4' ) )
end
end


return p;
return p;

Revision as of 11:34, 4 July 2022

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

local p = {};

function p.test(frame)
	local id = frame.args.id;
	local label = mw.wikibase.getLabel(id);
	
	local entity_type = mw.ustring.sub(id, 1, 1)
	
	local link
	
	if entity_type == "Q" then
		link = "Item:"..id
	elseif entity_type == "P" then
		link = "Property:"..id
	else
		link = "Special:EntityData:"..id
	end
	
	return "[["..link.."|"..label.." ".."("..id..")".."]]"
end

function p.test_statement(frame)
	local id = frame.args.id;
	mw.logObject( mw.wikibase.getAllStatements(id, 'P4' ) )
end

return p;