Lompat ke isi

Modul:PageID

Dari Wikipedia bahasa Indonesia, ensiklopedia bebas
Revisi sejak 15 Maret 2025 08.38 oleh Nyilvoskt (bicara | kontrib) (←Membuat halaman berisi 'local p = {} function p.getPageID() local title = mw.title.getCurrentTitle() return tostring(title.id) -- Convert ID to string for output end return p')
(beda) ← Revisi sebelumnya | Revisi terkini (beda) | Revisi selanjutnya → (beda)

local p = {}

function p.getPageID()
    local title = mw.title.getCurrentTitle()
    return tostring(title.id) -- Convert ID to string for output
end

return p