Pojdi na vsebino

Modul:WikidataGetCurrentId

Iz Wikipedije, proste enciklopedije
require "Modul:No globals"

local p = {}

function p.getCurrentId()
    local entity = mw.wikibase.getEntityObject();
    if not entity then
    	return -- throwError( 'entity-not-found' )
    end
    return entity.id;
end

return p