Difference between revisions of "Module:Catégorisation badges/Détection"

From ChaldeanWiki
Jump to: navigation, search
 
m (1 revision imported)
 
(No difference)

Latest revision as of 06:18, 9 May 2015

Documentation for this module may be created at 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