Module:Catégorisation badges/Détection
< Module:Catégorisation badges
Sauter à la navigation
Sauter à la recherche
Révision datée du 25 janvier 2016 à 11:24 par Admin (discussion | contributions) (1 révision importée)
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