Differenze tra le versioni di "Modulo:AIRBox"

Da Wiki Acquisti in rete PA.
m
m
Riga 28: Riga 28:
         end
         end


         output:node(iconDiv)
          
     end
     end


Riga 41: Riga 41:
     contentDiv:node(boxBody)
     contentDiv:node(boxBody)


    output:node(iconDiv)
     output:node(contentDiv)
     output:node(contentDiv)



Versione delle 16:07, 29 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 ""

    local output = mw.html.create('div')
    output:addClass('multibox')
    

    local boxHeader = mw.html.create('div')
    boxHeader:addClass('box-header')
    boxHeader:wikitext(frame:preprocess(titolo))

    if icona and icona ~= "" then
        local iconDiv = mw.html.create('div')
        iconDiv:addClass('box-icon')

        if icona == "remember" then
            iconDiv:addClass('remember')
        elseif icona == "warning" then
            iconDiv:addClass('warning')
        end

        
    end

    local contentDiv = mw.html.create('div')
    contentDiv:addClass('box-content')

    contentDiv:node(boxHeader)

    local boxBody = mw.html.create('div')
    boxBody:addClass('box-body')
    boxBody:wikitext(frame:preprocess(testo))
    contentDiv:node(boxBody)

    output:node(iconDiv)
    output:node(contentDiv)

    return tostring(output)
end

return p