Difference between revisions of "Module:Sandbox"

From Pathfinder Wiki
Line 15: Line 15:
 
local retVal = utilities.localize( 'Requirements' )
 
local retVal = utilities.localize( 'Requirements' )
 
mw.log('retVal: '..retVal)
 
mw.log('retVal: '..retVal)
 +
end
 +
 +
function p.variableScope( frame )
 +
if ( globalVar == nil ) then
 +
mw.log( 'globalVar == nil')
 +
end
 +
globalVar = 'test'
 
end
 
end
  
 
return p
 
return p

Revision as of 18:57, 18 July 2021

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

local p = {}
local utilities = require ( "Module:Utilities" )

function p.expandTemplate( frame )
	mw.log(frame:expandTemplate{ title = 'User:DesignerThan/Sandbox/expandTemplate' })
end

function p.lst( frame )
	mw.log('Test')
	local strFromTrans = frame:callParserFunction( '#lst', { 'Localization:All/de', 'LoremIpsum' })
	mw.log('strFromTrans: |'..strFromTrans..'|')
end

function p.testLocalize( frame )
	local retVal = utilities.localize( 'Requirements' )
	mw.log('retVal: '..retVal)
end

function p.variableScope( frame )
	if ( globalVar == nil ) then
		mw.log( 'globalVar == nil')
	end
	globalVar = 'test'
end

return p