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 04:42, 8 June 2015 (testing lua code, to try allowing for unlimited parameters in Template:Uses Wikidata/sandbox). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local getArgs = require('Module:Arguments').getArgs
local p = {}
local wikibaseModule = require "Module:Wikibase"
local label = wikibaseModule.label
 
function p.usesProperty(frame)
	local args = getArgs(frame)
	return p._usesProperty(args)
end
 
function p._usesProperty(args)
        local result = ''
	for k, v in pairs(args) do
		result = result .. "<li><b><i>[[d:Property:" .. v .. "|" .. label(v) .. " <small>({{uc:" .. v .. "}})</small>]]</i></b> (see [[d:Spcial:WhatLinksHere/Property:" .. v .. "|uses]])</li>"
	end
	return result
end
 
return p