Module:PageTitle

Revision as of 23:28, 17 July 2016 by com>Ckwng (Created page with "local BaseData = require("Module:BaseData") local PageTitle = BaseData{} function PageTitle.ID(frame) return tostring(mw.getCurrentTitle().id) end function PageTitle.Ti...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:PageTitle/doc

local BaseData = require("Module:BaseData")

local PageTitle = BaseData{}

function PageTitle.ID(frame)
    return tostring(mw.getCurrentTitle().id)
end

function PageTitle.Title(frame)
    return tostring(mw.getCurrentTitle().prefixedText)
end

return PageTitle