Module:Antarctic Union: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
local p = {} --p stands for package | local p = {} --p stands for package | ||
local ministers = {" | local ministers = {"Dools2"} | ||
local cabinet = "4th" | |||
local cabinetName = "1st Dools2 Cabinet" | |||
local since = "October 17, 2023" | |||
function p.minister( frame ) | function p.minister( frame ) | ||
Line 14: | Line 17: | ||
return "[[Aurora:"..ministers[1].."|"..ministers[1].."]]" | return "[[Aurora:"..ministers[1].."|"..ministers[1].."]]" | ||
end | end | ||
end | |||
function p.cabinet( frame ) | |||
return cabinet | |||
end | |||
function p.cabinetName( frame ) | |||
return cabinetName | |||
end | |||
function p.since( frame ) | |||
return since | |||
end | end | ||
return p | return p |
Revision as of 16:41, 18 October 2023
This is module is to edit every page ASAP without manually editing all. I did this module because I was bored manually editing every AU page.
local p = {} --p stands for package
local ministers = {"Dools2"}
local cabinet = "4th"
local cabinetName = "1st Dools2 Cabinet"
local since = "October 17, 2023"
function p.minister( frame )
local arg = frame.args[1]
if arg == "pm" then
return ministers[1]
end
end
function p.ministerlink( frame )
local arg = frame.args[1]
if arg == "pm" then
return "[[Aurora:"..ministers[1].."|"..ministers[1].."]]"
end
end
function p.cabinet( frame )
return cabinet
end
function p.cabinetName( frame )
return cabinetName
end
function p.since( frame )
return since
end
return p