Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:UrlParamTest

From Farming Simulator Modding Wiki
Revision as of 01:00, 21 September 2025 by XPModder (talk | contribs) (Created page with "local p = {} function p.Get(frame) local args = {} -- get the arguments if frame == mw.getCurrentFrame() then args = frame:getParent().args else args = frame.args end local title = mw.title.getCurrentTitle() return title.fragment end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:UrlParamTest/doc

local p = {}

function p.Get(frame)

	local args = {}
    -- get the arguments
    if frame == mw.getCurrentFrame() then
        args = frame:getParent().args
    else
        args = frame.args
    end


	local title = mw.title.getCurrentTitle()
	return title.fragment
	
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.