请问,如何从我的MediaWiki特别页面中删除此链接?
答案 0 :(得分:0)
您需要在特殊页面类中覆盖SpecialPage::addHelpLink()
。您可以添加其他帮助链接,也可以根本不添加任何帮助链接。
答案 1 :(得分:0)
退房
languages/i18n/en.json
第[233]行
答案 2 :(得分:-1)
我找到了它:
import React, { Component } from 'react';
import { View, Text, Button, TextInput } from 'react-native';
class MyComponent extends Component {
constructor(props) {
super(props);
}
render() {
return (
<View >
<Button title="My Component"/>
</View>
)
}
}
export default MyComponent;
我刚从SpecialPage Class中删除了-helppage。