Jump to content

Module:Uses Wikidata

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Evad37 (talk | contribs) at 05:07, 8 June 2015 (define p_num). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}
local wikibaseModule = require "Module:Wikibase"
local label = wikibaseModule.label


function p.usesProperty(frame)
	local result = ''
	local ii = 1
	while frame.args[ii] ~= '' do
		local p_num = frame.args[ii]
		result = result .. "<li><b><i>[[d:Property:" .. p_num .. "|" .. label(p_num) .. " <small>({{uc:" .. p_num .. "}})</small>]]</i></b> (see [[d:Spcial:WhatLinksHere/Property:" .. p_num .. "|uses]])</li>"
		ii = ii + 1
	end
	return result
end
 
return p