มอดูล:Userbox/doc

จากวิกิพีเดีย สารานุกรมเสรี

มอดูลนี้ใช้สำหรับการประมวลผลสำหรับแม่แบบกล่องผู้ใช้ทั้งสามรูปแบบคือ {{userbox}}, {{userbox-2}} และ {{userbox-r}}

แม่แบบ คำอธิบาย ตัวอย่าง
{{userbox}} Makes userboxes with an id on the left-hand side, or with no id.
idข้อความ
ข้อความ
{{userbox-2}} Makes userboxes with an id on both the left- and right-hand sides.
id1ข้อความid2
{{userbox-r}} Makes userboxes with an id on the right-hand side.
ข้อความid

To use any of these templates from a wiki page, please see the individual template pages for documentation. To generate userboxes directly from Lua, read on.

Generating userboxes from Lua[แก้]

To generate a userbox directly from Lua, first load the module.

local userbox = require('Module:Userbox')

You can then run any of the three templates with the code:

userbox.main(functionName, args)

For {{userbox}} use the function name "_userbox"; for {{userbox-2}} use the function name "_userbox-2"; and for {{userbox-r}} use the function name "_userbox-r". The args parameter is a table of arguments to pass to the different userbox functions. To see a list of valid arguments, please consult the individual template pages.