Module:Catégorisation badges/Détection

De Gregorius 3.0
< Module:Catégorisation badges
Révision datée du 25 janvier 2016 à 11:24 par Admin (discussion | contributions) (1 révision importée)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)
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