User Messages是一个基于JavaScript开发的讨论工具,可以让维护人员轻松地在用户讨论页留下标准化的信息。管理员与维护姬可以在Special:参数设置中启用该小工具。
小工具的依赖项:
AxUserMsg添加了"向该用户发出提醒"的工具链接,单击可展开UserMessages面板。
subst:
)。UserMessages的一些功能可以被自定义配置。您可以在您的common.js或skin.js里添加数行代码来进行自定义配置。
以下列出了常用的配置项和萌百特有的配置项,完整版参见commons:Help:Gadget-UserMessages#Custom_settings
window.AxUserMsgPreSelect = 5;
window.AxUserMsgCustomText = '示例文本'; //可替换为任意文本
window.AxUserMsgNoParse = true;
window.AxUserMsgUseSelect = true;
window.AxUserMsgMaxSelect = 10; //数字任填
window.AxUserMsgUseBuiltinTemplate = false;
window.AxUserMsgCustomTemplate = [ ['Template', "Display", "Summary and display", number-Type, "talk-Summary"], ['Nopenis', "No penises", "Commons doesn't need excessive amount of images depicting genitalia", 128], ];
$(document).on('scriptLoaded', function(evt, st, o) { if (st) { if ('AxUserMsg' === st && o) { o.umTemplate.push(['Template', "Display", "Summary and display", number-Type, "talk-Summary"]); // Example o.umTemplate.push(['Nopenis', "No penises", "Commons doesn't need excessive amount of images depicting genitalia", 128]); } } });
|