Module:Infobox/Widget/Sponsors

From TwogPedia
Revision as of 13:56, 30 August 2022 by Couchor (talk | contribs) (Created page with "local Sponsors = {} function Sponsors.make(sponsorArr, variant) local container = mw.html.create('div') -- :addClass('ib-sponsors') local sponsorList = mw.text.split(sponsorArr, ',') for i, v in ipairs(sponsorList) do v = mw.text.trim(v) local pageExists = mw.getCurrentFrame():callParserFunction('#ifexist', v, 'yes', 'no' ) local div = mw.html.create('div') if ( pageExists == 'yes' ) then div:wikitext('' .. v .. '') else div:wik...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Infobox/Widget/Sponsors/doc

local Sponsors = {}

function Sponsors.make(sponsorArr, variant)
	local container = mw.html.create('div')
			-- :addClass('ib-sponsors')
	local sponsorList = mw.text.split(sponsorArr, ',')
	
	for i, v in ipairs(sponsorList) do
		v = mw.text.trim(v)
		local pageExists = mw.getCurrentFrame():callParserFunction('#ifexist', v, 'yes', 'no' )
		local div = mw.html.create('div')
		if ( pageExists == 'yes' ) then 
			div:wikitext('[[' .. v .. '|' .. v .. ']]')
		else 
			div:wikitext(v)
		end
		container:node(div)
	end

	return container
end


return Sponsors