Différences entre versions de « Module:Catégorisation badges/Détection »
Sauter à la navigation
Sauter à la recherche
m (1 révision importée) |
(Aucune différence)
|
Version actuelle datée du 25 janvier 2016 à 11:24
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