Module:Antarctic Union: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 22: | Line 22: | ||
local arg = frame.args[1] | local arg = frame.args[1] | ||
if arg == "pm" then | if arg == "pm" then | ||
return "{{PlayerIMG|"..ministers[1].."|small}} [[Aurora:"..ministers[1].."|"..ministers[1].."]]" | return frame:preprocess("{{PlayerIMG|"..ministers[1].."|small}} [[Aurora:"..ministers[1].."|"..ministers[1].."]]") | ||
end | end | ||
end | end |
Revision as of 18:48, 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.ministerlinkimage( frame )
local arg = frame.args[1]
if arg == "pm" then
return frame:preprocess("{{PlayerIMG|"..ministers[1].."|small}} [[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