Module:Plain sister
Išvaizda
Documentation for this module may be created at Module:Plain sister/doc
local p = {}
local sites = { -- interwiki prefix, parameter, label and site id (for Wikidata)
{ 'w', 'wikipedia', 'Vikipedijos straipsnis', 'ltwiki' },
{ 'commons', 'commons', 'Vikitekos galerija', 'commonswiki' },
{ 'commons:Category', 'commonscat', 'Commons category', '' },
{ 'q', 'wikiquote', 'citatos', 'ltwikiquote' },
{ 'n', 'wikinews', 'naujienos', 'ltwikinews' },
{ 'wikt', 'wiktionary', 'apibrėžimas', 'ltwiktionary' },
{ 'b', 'wikibooks', 'knyga', 'ltwikibooks' },
{ 'v', 'wikiversity', 'kursas', 'ltwikiversity' },
{ 'wikispecies', 'wikispecies', 'taksonomija', 'wikispecieswiki' },
{ 'voy', 'wikivoyage', 'kelionės gidas', 'ltwikivoyage' },
{ 'd', 'wikidata', 'Duomenys', 'wikidatawiki' },
{ 'wikilivres', 'wikilivres', 'wikilivres', '' },
{ 'm', 'meta', 'Meta', 'metawiki' }
}
function p.interprojetPart( frame )
local frame = frame:getParent()
local item = mw.wikibase.getEntityObject()
local links = {}
for _, site in pairs( sites ) do
local val = ''
if val == '' and frame.args[site[2]] ~= nil then
val = frame.args[site[2]]
end
if val == '' and site[4] ~= '' and item ~= nil then
if site[4] == 'wikidatawiki' then
val = item.id or ''
else
val = item:getSitelink( site[4] ) or ''
end
end
if val ~= '' then
table.insert( links, '[[' .. site[1] .. ':' .. val .. '|' .. site[3] .. ']]' )
end
end
if next( links ) == nil then
return ''
end
return '<li class="sisitem">'
.. '<span class="sisicon" style="padding-right:1ex;">[[Image:Wikimedia-logo.svg|frameless|18px|link=Special:sitematrix|alt=Sister Projects.]]</span>'
.. '[[Special:sitematrix|sister projects]]: ' .. table.concat( links, ', ' )
.. '.</li>'
end
return p