Modulo:GetTagFromCategory
Versione del 1 giu 2023 alle 17:08 di Acquisti in Rete (discussione | contributi)
La documentazione per questo modulo può essere creata in Modulo:GetTagFromCategory/man
local p = {}
function p.generateTagCode(frame)
local categories = mw.text.split(frame.args[1], ",")
local tagCode = ""
-- Genera i codici di categoria e tag
for _, category in ipairs(categories) do
category = mw.text.trim(category)
tagCode = tagCode .. "[[Category:" .. category .. "]]"
-- Assegna il codice dell'oggetto tag corrispondente alla categoria
if category == "PA" then
tagCode = tagCode .. "{{TagPa}}"
elseif category == "AltriBandi" then
tagCode = tagCode .. "{{TagAltriBandi}}"
elseif category == "Mepa" then
tagCode = tagCode .. "{{TagMepa}}"
end
end
-- Genera il codice HTML con i tag
local html = mw.html.create('div')
:addClass('tagbox')
:wikitext('<div class="tagbox-tags-column"><div class="tagbox-tags-body"><span class="tagbox-label">I tag di questa pagina:</span>' .. tagCode .. '</div></div>')
return tagCode .. tostring(html)
end
return p