我有一个MediaWiki网站,我想添加一个带有非常简单的“阅读文章”功能的标签(没有任何编辑/评论选项)。我按照手册尝试为它创建一个命名空间,但它仍然无效。
LocalSettings.php的片段如下所示:
define("NS_ARTICLE", 500);
$wgExtraNamespaces[NS_ARTICLE] = "Article";
$wgNamespaceProtection[NS_ARTICLE] = array( '' );
$wgNamespacesWithSubpages[NS_ARTICLE] = true;
$wgContentNamespaces[] = NS_ARTICLE;
我在Title.php中创建了新方法:
public function getReadPage() {
return Title::makeTitle( MWNamespace::getRead( NS_ARTICLE ), $this->getDBkey() );
}
在Namespace.php中:
public static function getRead( $index ) {
self::isMethodValidFor( $index, __METHOD__ );
return self::isTalk( $index )
? $index
: $index + 1;
}
在SkinTemplate.php中:
$readPage = $title->getReadPage();
$content_navigation['namespaces']['article']['class'] = 'selected';
$content_navigation['namespaces']['article']['text'] = 'Article';
$content_navigation['namespaces']['article']['href'] = $readPage;
$content_navigation['namespaces']['article']['primary'] = true;
$content_navigation['namespaces']['article']['context'] = 'subject';
Tab出现了,但它链接到“:Title”而不是“Article:Title”。如果我查找“文章:标题”页面,将显示以下消息:
此页面目前没有文字。您可以在其他页面中搜索此页面标题,搜索相关日志或编辑此页面。
有什么想法吗?