Modul:Wikibase

Ji Wîkîpediya, ensîklopediya azad.
Belgekirina modulê[biafirîne]
-- Module:Wikibase
local p = {}
 
-- Devuelve la ID del ítem, el nombre o el enlace de la página en la wiki local.
function p.id(frame)
        if not mw.wikibase then
           return "module ya wikibase ne hate dîtin"
        end
 
        entity = mw.wikibase.getEntityObject()
 
        if entity == nil then
           return ""
        end
 
        return entity.id
end
 
-- Devuelve la etiqueta de un ítem dado.
function p.etiqueta(frame)
        if frame.args[1] == nil then
            entity = mw.wikibase.getEntityObject()
            if not entity then return nil end
 
            id = entity.id
        else
            id = frame.args[1]
        end
 
        return mw.wikibase.label( id )
end
 
-- Devuelve la página local de un ítem dado.
function p.enlace(frame)
        if frame.args[1] == nil then
            entity = mw.wikibase.getEntityObject()
            if not entity then return nil end
 
            id = entity.id
        else
            id = frame.args[1]
        end
 
        return mw.wikibase.sitelink( id )
end

-- Devuelve la descripción de un ítem dado.
function p.descripcion(frame)
        if frame.args[1] == nil then
            entity = mw.wikibase.getEntityObject()
            if not entity then return nil end
 
            id = entity.id
        else
            id = frame.args[1]
        end
 
        return mw.wikibase.description( id )
end
 
return p