Модуль:Infoboxes: различия между версиями

Материал из DiPix Wiki
Нет описания правки
Нет описания правки
Строка 4: Строка 4:
local role = frame.args["role"]
local role = frame.args["role"]
local discord = frame.args["discord"]
local discord = frame.args["discord"]
local tabl = ""
if discord ~= nil or role ~= nil then
tabl = tabl.."{|"
if role ~= nil then
tabl = tabl.."|Роль||"..role
end
if discord ~= nil then
tabl = tabl.."|Discord||"..discord
end
tabl = tabl.."|}"
end
return [[
return [[
<div style="float:right;padding:1rem;display:flex;gap:1rem;align-items:center;background-color:#00ffff29">
<div style="float:right;padding:1rem;display:flex;gap:1rem;align-items:center;background-color:#00ffff29">
https://mc-heads.net/avatar/]]..name..[[/32.png
https://mc-heads.net/avatar/]]..name..[[/32.png
<p>]]..name..[[</p>
<p>]]..name..[[</p>
]]..((role or discord) and [[
]]..tabl..[[
{]]..(role and '|Роль||'..role or '')..[[
]]..(discord and '|Discord||'..role or '')..[[
|}
]] or '')..[[
</div>
</div>
]]
]]
end
end
return p
return p

Версия от 09:21, 12 марта 2024

Для документации этого модуля может быть создана страница Модуль:Infoboxes/doc

local p = {}
function p.player(frame)
	local name = frame.args[1]
	local role = frame.args["role"]
	local discord = frame.args["discord"]
	local tabl = ""
	if discord ~= nil or role ~= nil then
		tabl = tabl.."{|"
		if role ~= nil then
			tabl = tabl.."|Роль||"..role
		end
		if discord ~= nil then
			tabl = tabl.."|Discord||"..discord
		end
		tabl = tabl.."|}"
	end
	return [[
		<div style="float:right;padding:1rem;display:flex;gap:1rem;align-items:center;background-color:#00ffff29">
		https://mc-heads.net/avatar/]]..name..[[/32.png
		<p>]]..name..[[</p>
		]]..tabl..[[
		</div>
	]]
end
return p