View source for Module:parameters
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local export = {}
local function track(page, calling_module, calling_function, param_name)
local track = require("Module:debug/track")
local tracking_page = "parameters/" .. page
-- Cascades down in specificity, as each level is a prerequisite for the next.
track(tracking_page)
if calling_module then
track(tracking_page .. "/" .. calling_module)
if calling_function then
track(tracking_page .. "/" .. calling_module .. "/" .. calling_function)
if param_name then
track(tracking_page .. "/" .. calling_module .. "/" .. calling_function .. "/" .. param_name)
end
end
end
return true
end
function export.process(args, params, return_unknown, calling_module, calling_function)
000
1:0
Template used on this page:
Return to Module:parameters.