« Module:Icône de titre » : différence entre les versions
Aller à la navigation
Aller à la recherche
Modèle>Hlm Z. (Nouvelle page : local p = {} function p.main(frame) local args = {} local argsParent = frame:getParent().args --Paramètres vides interprétés par Lua for cle, val in pairs(argsParent) do...) |
m (16 revisions imported: Modele avancement) |
||
| (15 versions intermédiaires par un autre utilisateur non affichées) | |||
| Ligne 4 : | Ligne 4 : | ||
local args = {} | local args = {} | ||
local argsParent = frame:getParent().args | local argsParent = frame:getParent().args | ||
--Paramètres vides interprétés par Lua | --Paramètres vides interprétés par Lua | ||
for cle, val in pairs(argsParent) do | for cle, val in pairs(argsParent) do | ||
if val ~= '' then | if val ~= '' then | ||
args[cle] = mw.text.trim(val) | |||
end | end | ||
end | end | ||
return p._main(args) | return p._main(args) | ||
end | end | ||
function p._main(args) | function p._main(args) | ||
local res = mw.html.create( | local res = mw.html.create() | ||
local fichierWiki = '[[Fichier:%s|%spx|link=%s|%s|alt=%s]]' | local iconeTitre = mw.html.create() | ||
local frame = mw.getCurrentFrame() | |||
local fichierWiki = '[[Fichier:%s|%spx|link=%s|%s|%s|alt=%s]]' | |||
local argsId = args.id | |||
local nowiki = frame:extensionTag{name = 'nowiki'} | |||
iconeTitre | |||
:wikitext(mw.ustring.format(fichierWiki, | |||
args.image or 'Fairytale bookmark.png', | |||
args.taille or 20, | |||
args.lien or 'Modèle:Icône de titre', | |||
args['paramètre'] or '', | |||
args.texte or 'Exemple de texte', | |||
args.texte or 'Exemple de texte')) | |||
if not args.id then | |||
return tostring(res) | local nsPage = mw.title.getCurrentTitle().namespace | ||
if nsPage == 2 or nsPage == 3 then | |||
argsId = args.image or 'Fairytale bookmark.png' | |||
end | |||
end | |||
res:wikitext(frame:extensionTag('indicator', tostring(iconeTitre), {name = argsId})) | |||
if not args.id then | |||
res:wikitext('[[Catégorie:Page utilisant une icône de titre sans identifiant]]') | |||
end | |||
return nowiki .. tostring(res) | |||
end | end | ||
return p | return p | ||
Version actuelle datée du 9 avril 2021 à 11:22
La documentation pour ce module peut être créée à Module:Icône de titre/doc
local p = {}
function p.main(frame)
local args = {}
local argsParent = frame:getParent().args
--Paramètres vides interprétés par Lua
for cle, val in pairs(argsParent) do
if val ~= '' then
args[cle] = mw.text.trim(val)
end
end
return p._main(args)
end
function p._main(args)
local res = mw.html.create()
local iconeTitre = mw.html.create()
local frame = mw.getCurrentFrame()
local fichierWiki = '[[Fichier:%s|%spx|link=%s|%s|%s|alt=%s]]'
local argsId = args.id
local nowiki = frame:extensionTag{name = 'nowiki'}
iconeTitre
:wikitext(mw.ustring.format(fichierWiki,
args.image or 'Fairytale bookmark.png',
args.taille or 20,
args.lien or 'Modèle:Icône de titre',
args['paramètre'] or '',
args.texte or 'Exemple de texte',
args.texte or 'Exemple de texte'))
if not args.id then
local nsPage = mw.title.getCurrentTitle().namespace
if nsPage == 2 or nsPage == 3 then
argsId = args.image or 'Fairytale bookmark.png'
end
end
res:wikitext(frame:extensionTag('indicator', tostring(iconeTitre), {name = argsId}))
if not args.id then
res:wikitext('[[Catégorie:Page utilisant une icône de titre sans identifiant]]')
end
return nowiki .. tostring(res)
end
return p