Basculer le menu
Changer de menu des préférences
Basculer le menu personnel
Non connecté(e)
Votre adresse IP sera visible au public si vous faites des modifications.

« Module:Infobox/Configs/Organisation » : différence entre les versions

De Nefald
Page créée avec « local config = { titre = function(args) return args.nom or '{{PAGENAME}}' end, image = function(args) if args.image then return { nom = args.image, taille = args.tailleimage or "250px", legende = args.legende } end return nil end, sections = { { titre = 'Informations Générales', champs = {... »
 
Aucun résumé des modifications
Ligne 14 : Ligne 14 :
         return nil
         return nil
     end,
     end,
   
        typeField = {
        required = false, --
        allowedValues = {
            ['faction'] = {
                display = 'Faction',
                category = 'Factions'
            },
            ['tribu'] = {
                display = 'Tribu',
                category = 'Tribus'
            },
['ordre'] = {
                display = 'ordre',
                category = 'Ordres'
            },
['Guildes'] = {
                display = 'Guilde',
                category = 'Guildes'
            }
        },
        errorMessage = 'Type non reconnu. Types autorisés : Traité, Alliance, Serment,Guerre'
    },


     sections = {
     sections = {

Version du 29 septembre 2025 à 10:01

La documentation pour ce module peut être créée à Module:Infobox/Configs/Organisation/doc

local config = {
    titre = function(args)
        return args.nom or '{{PAGENAME}}'
    end,

    image = function(args)
        if args.image then
            return {
                nom = args.image,
                taille = args.tailleimage or "250px",
                legende = args.legende
            }
        end
        return nil
    end,
    
        typeField = {
        required = false, -- 
        allowedValues = {
            ['faction'] = {
                display = 'Faction',
                category = 'Factions'
            },
            ['tribu'] = {
                display = 'Tribu', 
                category = 'Tribus'
            },
			['ordre'] = {
                display = 'ordre', 
                category = 'Ordres'
            },
			['Guildes'] = {
                display = 'Guilde', 
                category = 'Guildes'
            }
        },
        errorMessage = 'Type non reconnu. Types autorisés : Traité, Alliance, Serment,Guerre'
    },

    sections = {
        {
            titre = 'Informations Générales',
            champs = {
                { cle = 'type', label = 'Type' },
                { cle = 'fondation', label = 'Fondation' },
                { cle = 'dissolution', label = 'Dissolution' },
                { cle = 'fondateurs', label = 'Fondateur(s)' },
                { cle = 'symbole', label = 'Symbole' },
                { cle = 'statut', label = 'Statut' },
                { cle = 'x', label = 'Coordonnée X' },  -- Ces champs seront remplacés automatiquement
                { cle = 'y', label = 'Coordonnée Y' },  -- par l'affichage "Coordonnées" groupé
                { cle = 'z', label = 'Coordonnée Z' }
            }
        },
        {
            titre = 'Organisation Interne',
            champs = {
                { cle = 'dirigeant', label = 'Dirigeant' },
                { cle = 'effectifs', label = 'Effectifs' },
                { cle = 'activite', label = 'Activité' },
                { cle = 'culte', label = 'Culte' }
            }
        },
        {
            titre = 'Géographie',
            champs = {
                { cle = 'territoire', label = 'Territoire d’influence' },
                { cle = 'siege', label = 'Siège' },
                { cle = 'localisation', label = 'Localisation' }
            }
        }
    }
}

return config