Module:Gallery

De Wiki Electrolab
Révision datée du 1 mai 2023 à 08:19 par Electrolab (discussion | contributions) (Page créée avec « -------------------------------------------------------------------------------- -- Origin : https://starcitizen.tool -- -------------------------------------------------------------------------------- local getArgs = require('Module:Arguments').getArgs local p = {} local root function p.main(frame) local args = getArgs(frame) return p._main(args) end function p._main(args) local filearg = '' local height = '120' l... »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)
Module documentation[view][edit][history][purge]
This documentation is transcluded from Module:Gallery/doc. Changes can be proposed in the talk page.

Module:Gallery is a module that implements the {{Gallery}} template. Please see the template page for usage instructions.


--------------------------------------------------------------------------------
--                      Origin : https://starcitizen.tool                     --
--------------------------------------------------------------------------------

local getArgs = require('Module:Arguments').getArgs
local p = {}
local root

function p.main(frame)
	local args = getArgs(frame)
	return p._main(args)
end

function p._main(args)
	local filearg = ''
	local height = '120'
	local prependarg = '[[File:'
	local apprendarg = '|frameless|' .. 'x' .. height .. 'px]]'
	
	for key,value in pairs(args) do
			local content = args[key]
			-- Check if arg is a valid file name
			if content:match('.[^{}<>]+%.%w+') then
				content = prependarg .. content .. apprendarg
			end
	    	filearg = filearg .. content
	end
	
	root = mw.html.create('div')
	root
		:addClass('template-gallery')
		:wikitext( filearg )
	
	return tostring(root)
end

return p
Les cookies nous aident à fournir nos services. En utilisant nos services, vous acceptez notre utilisation de cookies.