وحدة:Sitelink/ملعب

من أرابيكا، الموسوعة الحرة
اذهب إلى التنقل اذهب إلى البحث
p= {}

function p.getSiteLink1(frame)

	local project = frame.args[1] 
	local id = frame.args[2]
	local entity = mw.wikibase.getEntityObject(id)
	local link = entity:getSitelink(project)
	
	var = link
	
	return var
	
end

function p.getarlabel(frame)

	local entity = mw.wikibase.getEntityObject(frame.args[1])
	local link =entity.labels['ar'].value
	
	var = link
	
	return var
	
end

function p.getlabel(frame)

	local project = frame.args[1] 
	local id = frame.args[2]
	local entity = mw.wikibase.getEntityObject(id)
	local link =entity.labels[project].value
	
	var = link
	
	return var
	
end


return p