Module:Catégorisation badges/Détection
Sauter à la navigation
Sauter à la recherche
La documentation pour ce module peut être créée à Module:Catégorisation badges/Détection/doc
local p = { }
function p.hasAnyBadge( frame )
local entity = mw.wikibase.getEntityObject()
if not entity then
return ''
end
for siteid, linkTable in pairs( entity.sitelinks ) do
if next(entity.sitelinks[ siteid ].badges) ~= nil then
return '1'
end
end
return ''
end
return p