Mô đun:Message box/tài liệu
| Đây là một trang con tài liệu dành cho Mô đun:Message box. Nó gồm có các thông tin hướng dẫn sử dụng, thể loại và các nội dung khác không thuộc về phần trang mô đun gốc. |
| Tài liệu mô đun này hiện đang thiếu, không đầy đủ hoặc không miêu tả chính xác chức năng, cách sử dụng, các tham số của nó. Xin hãy giúp viết một tài liệu hoặc mở rộng và cải thiện tài liệu để giúp các thành viên khác biết cách sử dụng mô đun này. |
| Mô đun Lua này được sử dụng ở khoảng 244.000 trang. Để tránh gây lỗi trên quy mô lớn và tải máy chủ không cần thiết, tất cả thay đổi cần được thử nghiệm ở trang con /sandbox, /testcases của mô đun, hoặc ở chỗ thử mô đun. Các thay đổi đã được thử nghiệm có thể thêm vào mô đun bằng một sửa đổi duy nhất. Xin hãy thảo luận các thay đổi tại trang thảo luận trước khi áp dụng sửa đổi. |
| Mô đun Lua này được sử dụng trong thông báo hệ thống, và ở khoảng 244.000 trang. Thay đổi đến nó có thể dẫn đến thay đổi ngay lập tức giao diện người dùng Wikipedia. Để tránh gây lỗi trên quy mô lớn và tải máy chủ không cần thiết, tất cả thay đổi cần được thử nghiệm ở trang con /sandbox, /testcases của mô đun, hoặc ở chỗ thử mô đun. Các thay đổi đã được thử nghiệm có thể thêm vào mô đun bằng một sửa đổi duy nhất. Xin hãy thảo luận các thay đổi tại trang thảo luận trước khi áp dụng sửa đổi. |
| Mô đun này được xếp loại là đã sẵn sàng để sử dụng rộng rãi. Nó đã đạt đến mức độ hoàn thiện, được coi là khá ổn định và không có lỗi, và có thể được sử dụng bất kỳ chỗ nào nếu phù hợp. Nó có thể được nêu trên các trang trợ giúp cũng như các tài liệu Wikipedia khác làm tùy chọn tìm hiểu cho người dùng mới. Để giảm tải tài nguyên máy chủ và tránh tạo đầu ra gây hại, mọi cải tiến nên được thực hiện thông qua việc kiểm thử tại chỗ thử thay vì sửa đổi "thử và sai" lặp đi lặp lại liên tục. |
| Bản mẫu này sử dụng Lua: |
| Mô đun này sử dụng TemplateStyles: |
This is a meta-module that implements the message box templates {{mbox}}, {{ambox}}, {{cmbox}}, {{fmbox}}, {{imbox}}, {{ombox}}, and {{tmbox}}. It is intended to be used from Lua modules, and should not be used directly from wiki pages. If you want to use this module's functionality from a wiki page, please use the individual message box templates instead.
Usage
To use this module from another Lua module, first you need to load it.
local messageBox = require('Module:Message box')To create a message box, use the main function. It takes two parameters: the first is the box type (as a string), and the second is a table containing the message box parameters.
local box = messageBox.main( boxType, { param1 = param1, param2 = param2, -- More parameters...})There are seven available box types:
| Box type | Template | Purpose |
|---|---|---|
mbox | {{mbox}} | For message boxes to be used in multiple namespaces |
ambox | {{ambox}} | For article message boxes |
cmbox | {{cmbox}} | For category message boxes |
fmbox | {{fmbox}} | For interface message boxes |
imbox | {{imbox}} | For file namespace message boxes |
tmbox | {{tmbox}} | For talk page message boxes |
ombox | {{ombox}} | For message boxes in other namespaces |
See the template page of each box type for the available parameters.
Usage from #invoke
As well as the main function, this module has separate functions for each box type. They are accessed using the code {{#invoke:Message box|mbox|...}}, {{#invoke:Message box|ambox|...}}, etc. These will work when called from other modules, but they access code used to process arguments passed from #invoke, and so calling them will be less efficient than calling main.
Technical details
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.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<td>...</td>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 onuseCollapsibleTextFields.allowMainspaceCategories- allow categorisation in the main namespace.templateCategory- the name of a category to be placed on the template page.templateCategoryRequireName- whether thenameparameter 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, thetemplateErrorCategoryis applied to the template page.