Module:Sandbox/Mmullie (WMF)/my module

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search
Lua
CodeDiscussionEditHistoryLinksLink count Subpages:DocumentationTestsResultsSandboxLive code All modules

Documentation for this module may be created at Module:Sandbox/Mmullie (WMF)/my module/doc

Code

local p = {}
function p.checkIfHasStatement()
	if next(mw.wikibase.getEntity():getProperties()) == nil then
		return '[[Category:No statements]]'
	else
		return '';
	end	
end
return p