« Module:Infobox/Objet/Note » : différence entre les versions
< Module:Infobox | Objet
m Correction sur le nom d'une variable |
retouche de la modification précédente |
||
(3 versions intermédiaires par 2 utilisateurs non affichées) | |||
Ligne 7 : | Ligne 7 : | ||
local MEDIUMS = { | local MEDIUMS = { | ||
tablette = {"Tablette", "SF Tablette.png"}, | tablette = {"Tablette", "SF Tablette.png"}, | ||
livre = {"Livre", "Livre.png"}, | |||
} | } | ||
local medium_config = MEDIUMS[medium:lower()] | local medium_config = MEDIUMS[medium:lower()] | ||
Ligne 17 : | Ligne 18 : | ||
return string.format( | return string.format( | ||
"[[Fichier:%s|x25px|alt=|link=|class=notpageimage]] %s", | "[[Fichier:%s|x25px|alt=|link=|class=notpageimage]] %s", | ||
medium_config[ | medium_config[2], | ||
medium_config[ | medium_config[1] | ||
) | ) | ||
end | end | ||
Ligne 32 : | Ligne 33 : | ||
{type = "row", label = "Support", value = medium}, | {type = "row", label = "Support", value = medium}, | ||
{type = "row", label = "Emplacement", value = "emplacement"}, | {type = "row", label = "Emplacement", value = "emplacement"}, | ||
{type = "row", label = "Valeur", value = "valeur"}, | |||
{type = "row", label = "Masse", value = "masse"}, | |||
}, | }, | ||
}, | }, |
Dernière version du 29 novembre 2023 à 17:52
local general = require("Module:Infobox/Fonctions")
local localdata = require("Module:Infobox/Localdata")
-- Support de la note (par défaut : tablette)
medium = function(localdata)
local medium = localdata["support"] or "tablette"
local MEDIUMS = {
tablette = {"Tablette", "SF Tablette.png"},
livre = {"Livre", "Livre.png"},
}
local medium_config = MEDIUMS[medium:lower()]
if medium_config == nil then
error(string.format(
"Valeur inconnue du paramètre « support » : « %s »",
medium
))
end
return string.format(
"[[Fichier:%s|x25px|alt=|link=|class=notpageimage]] %s",
medium_config[2],
medium_config[1]
)
end
return {
parts = {
general.title(),
general.image(),
{
type = "table",
separator = true,
rows = {
{type = "row", label = "Support", value = medium},
{type = "row", label = "Emplacement", value = "emplacement"},
{type = "row", label = "Valeur", value = "valeur"},
{type = "row", label = "Masse", value = "masse"},
},
},
general.creation_kit(),
}
}