Module:Message box/sandbox/configuration: Difference between revisions
From Neodyland Wiki
More actions
No edit summary |
No edit summary |
||
| Line 32: | Line 32: | ||
mbox = { | mbox = { | ||
types = { | types = { | ||
warning = { | |||
class = 'mbox-warning', | |||
image = 'Commons-emblem-late.svg' | |||
}, | |||
speedy = { | speedy = { | ||
class = ' | class = 'mbox-speedy', | ||
image = ' | image = 'Commons-emblem-urgent.svg' | ||
}, | |||
serious = { | |||
class = 'mbox-serious', | |||
image = 'Gnome-emblem-important.svg' | |||
}, | }, | ||
delete = { | delete = { | ||
class = ' | class = 'mbox-delete', | ||
image = ' | image = 'Gnome-emblem-important.svg' | ||
}, | |||
stop = { | |||
class = 'mbox-stop', | |||
image = 'Commons-emblem-hand.svg' | |||
}, | }, | ||
content = { | content = { | ||
| Line 49: | Line 61: | ||
}, | }, | ||
move = { | move = { | ||
class = ' | class = 'mbox-move', | ||
image = 'Merge-split-transwiki default.svg' | image = 'Merge-split-transwiki default.svg' | ||
}, | }, | ||
protection = { | protection = { | ||
class = ' | class = 'mbox-protection', | ||
image = ' | image = 'Gnome-security-medium.svg' | ||
}, | }, | ||
license = { | license = { | ||
class = 'imbox-license licensetpl', | class = 'imbox-license licensetpl', | ||
image = 'Imbox-license.svg' | image = 'Imbox-license.svg' | ||
}, | }, | ||
Revision as of 19:07, 18 November 2024
This documentation is transcluded from Module:Message box/sandbox/configuration/doc.
--------------------------------------------------------------------------------
-- Message box configuration --
-- --
-- This module contains configuration data for [[Module:Message box]]. --
--------------------------------------------------------------------------------
return {
fmbox = {
types = {
warning = {
class = 'fmbox-warning',
image = 'Ambox warning pn.svg'
},
editnotice = {
class = 'fmbox-editnotice',
image = 'Information icon4.svg'
},
system = {
class = 'fmbox-system',
image = 'Information icon4.svg'
}
},
default = 'system',
showInvalidTypeError = true,
classes = {'fmbox'},
imageEmptyCell = false,
imageRightNone = false,
templatestyles = 'Module:Message box/fmbox.css'
},
mbox = {
types = {
warning = {
class = 'mbox-warning',
image = 'Commons-emblem-late.svg'
},
speedy = {
class = 'mbox-speedy',
image = 'Commons-emblem-urgent.svg'
},
serious = {
class = 'mbox-serious',
image = 'Gnome-emblem-important.svg'
},
delete = {
class = 'mbox-delete',
image = 'Gnome-emblem-important.svg'
},
stop = {
class = 'mbox-stop',
image = 'Commons-emblem-hand.svg'
},
content = {
class = 'imbox-content',
image = 'Ambox important.svg'
},
style = {
class = 'imbox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'mbox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'mbox-protection',
image = 'Gnome-security-medium.svg'
},
license = {
class = 'imbox-license licensetpl',
image = 'Imbox-license.svg'
},
featured = {
class = 'imbox-featured',
image = 'Cscr-featured.svg',
imageNeedsLink = true
},
notice = {
class = 'imbox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'imbox'},
imageEmptyCell = true,
below = true,
templateCategory = 'File message boxes',
templatestyles = 'Module:Message box/imbox.css'
},
tmbox = {
types = {
speedy = {
class = 'tmbox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'tmbox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'tmbox-content',
image = 'Ambox important.svg'
},
style = {
class = 'tmbox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'tmbox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'tmbox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'tmbox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'tmbox'},
allowSmall = true,
imageRightNone = true,
imageEmptyCell = true,
templateCategory = 'Talk message boxes',
templatestyles = 'Module:Message box/sandbox/tmbox.css'
}
}