Module:If preview: Difference between revisions
NeonWabbit (talk | contribs) Created page with "local p = {} local getArgs = require("Module:Arguments").getArgs local yn = require("Module:Yesno") local cfg = mw.loadData('Module:If preview/configuration') --main This function returns either the first argument or second argument passed to this module, depending on whether the page is being previewed. function p.main(frame) local args = getArgs(frame) if cfg.preview then return args[1] or '' else return args[2] or '' end end --[[ pmain This function..." |
NeonWabbit (talk | contribs) No edit summary Tag: Manual revert |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
local getArgs = require("Module:Arguments").getArgs | local getArgs = require("Module:Arguments").getArgs | ||
local cfg = mw.loadData('Module:If preview/configuration') | local cfg = mw.loadData('Module:If preview/configuration') | ||
-- | -- Main function that returns nothing, even in preview | ||
function p.main(frame) | function p.main(frame) | ||
return '' | |||
end | end | ||
function p.pmain(frame) | function p.pmain(frame) | ||
return | return '' | ||
end | end | ||
-- Simplified warning function that returns nothing | |||
local function warning_text(warning) | local function warning_text(warning) | ||
return | return '' | ||
end | end | ||
function p._warning(args) | function p._warning(args) | ||
return '' | |||
end | end | ||
-- | -- Commented out warning functions to prevent any output | ||
warning | |||
-- function p.warning(frame) | -- function p.warning(frame) | ||
-- return '' | |||
-- return | |||
-- end | -- end | ||
function p.pwarning(frame) | function p.pwarning(frame) | ||
return '' | |||
return | |||
end | end | ||
function p.warn(text) | function p.warn(text) | ||
return '' | |||
end | end | ||
function p.consoleWarning(frame) | function p.consoleWarning(frame) | ||
return '' | return '' | ||
end | end | ||
return p | return p |
Latest revision as of 06:46, 2 November 2024
Documentation for this module may be created at Module:If preview/doc
local p = {}
local getArgs = require("Module:Arguments").getArgs
local cfg = mw.loadData('Module:If preview/configuration')
-- Main function that returns nothing, even in preview
function p.main(frame)
return ''
end
function p.pmain(frame)
return ''
end
-- Simplified warning function that returns nothing
local function warning_text(warning)
return ''
end
function p._warning(args)
return ''
end
-- Commented out warning functions to prevent any output
-- function p.warning(frame)
-- return ''
-- end
function p.pwarning(frame)
return ''
end
function p.warn(text)
return ''
end
function p.consoleWarning(frame)
return ''
end
return p