Module:Transclusion count: Difference between revisions
From Zoophilia Wiki
Jump to navigationJump to search
meta>Ahecht Sync from sandbox. Move functions to Module:High-use |
meta>MusikBot II m Protected "Module:Transclusion count": High-risk template or module (more info) ([Edit=Require autoconfirmed or confirmed access] (indefinite)) |
(No difference)
|
Revision as of 18:00, 3 December 2019
Documentation for this module may be created at Module:Transclusion count/doc
local p = {}
function p.fetch(frame)
local template = mw.ustring.gsub(mw.title.getCurrentTitle().text, "/doc$", "")
if frame.args["demo"] and frame.args["demo"] ~= "" then
template = mw.ustring.gsub(frame.args["demo"], "/doc$", "")
end
local index = mw.ustring.upper(mw.ustring.sub(template,1,1))
local data = mw.loadData('Module:Transclusion_count/data/' .. (mw.ustring.find(index, "%a") and index or "other"))
local return_value = tonumber(data[mw.ustring.gsub(template, " ", "_")])
-- If database value doesn't exist, use value passed to template
if return_value == nil then
local arg1=mw.ustring.match(frame.args[1], '[%d,]+')
return_value = tonumber(frame:callParserFunction('formatnum', arg1, 'R'))
end
return return_value
end
return p