打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

模块:Message box/doc

来自从零开始
Aladedalu留言 | 贡献2026年1月30日 (五) 16:24的版本
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

这是模块:Message box的文档页面

模板:Used in system 模板:Module rating ...ribunto/includes/Engines/LuaCommon/lualib/mwInit.lua第17行Lua错误:bad argument #1 to 'old_pairs' (table expected, got nil)

本模块适用于模板:Tl模板:Tl模板:Tl

在其它模块中引用本模块,您需要事先加载: <syntaxhighlight lang="lua"> local messageBox = require('Module:Message box') </syntaxhighlight>

为创建一个消息框,您需要使用main函数,并给出两个参数:第一个对应消息框类型(字符串),第二个对应消息。 <syntaxhighlight lang="lua"> local box = messageBox.main( boxType, {

   param1 = param1,
   param2 = param2,
   -- More parameters...

}) </syntaxhighlight>

可用信息框类型:

类型 原对应模板 用途
ambox 模板:Tl 条目命名空间
dmbox 模板:Tl 消歧义页面
fmbox 模板:Tl 界面消息及表单
tmbox 模板:Tl 讨论命名空间
ombox 模板:Tl 其他命名空间

“#invoke”引入

编辑源代码

main函数外,本模块为每个消息框类型对应了分别的函数,例如{{#invoke:Message box|ombox|...}}{{#invoke:Message box|ambox|...}}等。

技术细节

编辑源代码

The module uses the same basic code for each of the templates listed above; the differences between each of them are configured using the data at Module:Message box/configuration. Here are the various configuration options and what they mean:

  • types - a table containing data used by the type parameter of the message box. The table keys are the values that can be passed to the type parameter, and the table values are tables containing the class and the image used by that type.
  • default - the type to use if no value was passed to the type parameter, or if an invalid value was specified.
  • showInvalidTypeError - whether to show an error if the value passed to the type parameter was invalid.
  • allowBlankParams - usually blank values are stripped from parameters passed to the module. However, whitespace is preserved for the parameters included in the allowBlankParams table.
  • allowId - whether it is possible to set an "id" attribute to the html table tag.
  • allowSmall - whether a small version of the message box can be produced with "small=yes".
  • smallParam - a custom name for the small parameter. For example, if set to "left" you can produce a small message box using "small=left".
  • smallClass - the class to use for small message boxes.
  • substCheck - whether to perform a subst check or not.
  • classes - an array of classes to use with the message box.
  • imageEmptyCell - whether to use an empty 模板:Tag cell if there is no image set. This is used to preserve spacing for message boxes with a width of less than 100% of the screen.
  • imageEmptyCellStyle - whether empty image cells should be styled.
  • imageCheckBlank - whether "image=blank" results in no image being displayed.
  • imageSmallSize - usually, images used in small message boxes are set to 30x30px. This sets a custom size.
  • imageCellDiv - whether to enclose the image in a div enforcing a maximum image size.
  • useCollapsibleTextFields - whether to use text fields that can be collapsed, i.e. "issue", "fix", "talk", etc. Currently only used in ambox.
  • imageRightNone - whether imageright=none results in no image being displayed on the right-hand side of the message box.
  • sectionDefault - the default name for the "section" parameter. Depends on useCollapsibleTextFields.
  • allowMainspaceCategories - allow categorisation in the main namespace.
  • templateCategory - the name of a category to be placed on the template page.
  • templateCategoryRequireName - whether the name parameter is required to display the template category.
  • templateErrorCategory - the name of the error category to be used on the template page.
  • templateErrorParamsToCheck - an array of parameter names to check. If any are absent, the templateErrorCategory is applied to the template page.