Module:Universe: Difference between revisions
From PC Gaming Shelter
No edit summary |
No edit summary |
||
| Line 15: | Line 15: | ||
} | } | ||
local data = mw.smw.ask(query) | local data = mw.smw.ask(query) | ||
local forminput = frame:callParserFunction({ '#forminput', '', args = { | local forminput = frame:callParserFunction({ name = '#forminput', '', args = { | ||
'form=Mod', | 'form=Mod', | ||
'query string=Mod[Related game]=' .. game, | 'query string=Mod[Related game]=' .. game, | ||
Revision as of 09:44, 31 July 2026
Documentation for this module may be created at Module:Universe/doc
local utils = require( 'Module:Utils' )
local p = {}
local function getCurrentGame()
local title = mw.title.getCurrentTitle()
local game = title.rootText
return tostring(game)
end
function p.Mods(frame)
local game = getCurrentGame()
local query = {
'[[Category:Mods||Maps||Skins||Utilities]][[Related game::' .. game .. ']]'
}
local data = mw.smw.ask(query)
local forminput = frame:callParserFunction({ name = '#forminput', '', args = {
'form=Mod',
'query string=Mod[Related game]=' .. game,
'button text=Create or Edit Mod',
'autofocus=no'
}})
local html = mw.html.create()
return forminput
end
function p.Players()
local query = {
'[[Category:Players]][[Plays game::' .. getCurrentGame() .. ']]'
}
return mw.smw.ask(query)
end
function p.Clans()
local query = {
'[[Category:Communities]][[Related game::' .. getCurrentGame() .. ']]'
}
return mw.smw.ask(query)
end
return p
