我想创建一个插入签名的按钮。怎么做?
在做了一些研究之后,我发现我可以在User:MYUSERNAME/common.js
页面插入自定义按钮。
我看了几个例子。但是维基引用和信息通常在多个页面中分开并且过时。所以,如果我很幸运,我会在这里尝试找到尝试类似事情的人。
谁可以帮助我:
var customizeToolbar = function() {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"comment": {
label: 'Comment',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/3/37/Btn_toolbar_commentaire.png',
action: {
type: 'encapsulate',
options: {
pre: "<!-- ",
post: " -->"
}
}
}
}
});
};
当我这样做时,没有任何反应,因为很可能从未调用customizeTooblar。当我删除它时,它表示没有定义wikiEditor。
我已经在LocalSettings.php中启用了$wgAllowUserJs = true;
。
我看到了这个问题:Creating custom edit buttons for MediaWiki这仍然是我们应该做这种事情的方式吗?这可能不是一个公开的问题,因为我已经在这里询问我的特定问题了。
答案 0 :(得分:1)
问题是启动代码丢失了。 此代码应直接向高级工具栏添加笑脸标签:
var customizeToolbar = function() {
/* Your code goes here */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'advanced',
'group': 'insert',
'tools': {
'SimpleComment': {
label: 'Comment',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',
action: {
type: 'encapsulate',
options: {
pre: "preText",
post: "postText"
}
}
}
}
} );
};
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
mw.loader.using( 'user.options', function () {
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
$.when(
mw.loader.using( 'ext.wikiEditor.toolbar' ), $.ready
).then( customizeToolbar );
}
} );
}
// Add the customizations to LiquidThreads' edit toolbar, if available
mw.hook( 'ext.lqt.textareaCreated' ).add( customizeToolbar );
可以添加到wiki/User:YOUR_USRNAME/common.js
在LocalSettings.php
中,必须启用此选项$wgAllowUserJs = true;