Pojdi na vsebino

Modul:WikidataGetCurrentId

Iz Wikipedije, proste enciklopedije
Redakcija dne 12:16, 28. februar 2016 od Pinky sl (pogovor | prispevki) (Nova stran z vsebino: require "Modul:No globals" local p = {} local function getEntityFromId(id) return mw.wikibase.getEntityObject(id) end function p.getCurrentId() local entity = getEntit...)
(razl) ← Starejša redakcija | prikaži trenutno redakcijo (razl) | Novejša redakcija → (razl)
require "Modul:No globals"

local p = {}


local function getEntityFromId(id)
	return mw.wikibase.getEntityObject(id)
end

function p.getCurrentId()
	local entity = getEntityFromId()
	return entity and entity.id
end

return p