Module:Sandbox/Fungster: Difference between revisions

no edit summary
(Created page with "local p = {} -- This is my sandbox. function p._main (frame) if frame.getParent (args) then return "Hello!" end end return p")
 
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1:
local p = {}
 
-- Load necessary modules
-- This is my sandbox.
require ("Module:No globals")
function p._main (frame)
local getArgs = require('Module:Arguments').getArgs -- loads the module
if frame.getParent (args) then return "Hello!"
local yesno = require("Module:Yesno")
 
-- The first function.
function p.speedy_delete (frame, args)
local text = frame.args[1]
return "This page is a candidate for speedy deletion because " .. text .. "."
end
 
function p.delete (frame, args)
local text = frame.args[1]
return "This page is a candidate for deletion because " .. text .. "."
end
 
function p.cleanup (frame, args)
local text = frame.args[1]
return "This page needs to be [[w:Wikipedia:Cleanup|cleanuped]] because " .. text .. "."
end
 
function p.content (frame, args)
local text = frame.args[1]
return "This page is lacking a core thing on an article and needs to be fixed because " .. text .. "."
end
 
function p._mainmove (frame, args)
local text = frame.args[1]
return "This page is requested to be moved because " .. text .. "."
end
 
function p.protection (frame, args)
local text = frame.args[1]
return "This page is protected because " .. text .. "." -- .. name .. replace by the word Fred
end
 
22

edits