Differenze tra le versioni di "Modulo:AIRBox"
m |
m |
||
Riga 13: | Riga 13: | ||
output:addClass('multibox') | output:addClass('multibox') | ||
if icona and icona ~= "" and | if icona and icona ~= "" and icona ~= "noico" then | ||
local imgColumnDiv = mw.html.create('div') | local imgColumnDiv = mw.html.create('div') | ||
imgColumnDiv:addClass('box-img-column') | imgColumnDiv:addClass('box-img-column') |
Versione delle 09:50, 30 mag 2023
La documentazione per questo modulo può essere creata in Modulo:AIRBox/man
-- Nome del modulo: AIRBox
local p = {}
function p.renderBox(frame)
local args = frame.args
local titolo = args.titolo or "Da sapere che"
local testo = args.testo or ""
local icona = args.icona or "info"
local output = mw.html.create('div')
output:addClass('multibox')
if icona and icona ~= "" and icona ~= "noico" then
local imgColumnDiv = mw.html.create('div')
imgColumnDiv:addClass('box-img-column')
output:node(imgColumnDiv)
local iconDiv = mw.html.create('div')
iconDiv:addClass('box-icon')
imgColumnDiv:node(iconDiv)
if icona == "ricorda" then
iconDiv:addClass('ricorda')
elseif icona == "idea" then
iconDiv:addClass('idea')
elseif icona == "normativa" then
iconDiv:addClass('normativa')
elseif icona == "tool" then
iconDiv:addClass('tool')
elseif icona == "danger" then
iconDiv:addClass('danger')
elseif icona == "info" then
iconDiv:addClass('info')
end
end
local contentColumnDiv = mw.html.create('div')
contentColumnDiv:addClass('box-content-column')
output:node(contentColumnDiv)
if titolo and titolo ~= "" and titolo ~= "notitle" then
local boxHeader = mw.html.create('div')
boxHeader:addClass('box-header')
boxHeader:wikitext(frame:preprocess(titolo))
contentColumnDiv:node(boxHeader)
end
local boxBody = mw.html.create('div')
boxBody:addClass('box-body')
boxBody:wikitext(frame:preprocess(testo))
contentColumnDiv:node(boxBody)
return tostring(output)
end
return p