Fandom Developers Wiki
Advertisement

此頁面或部分內容仍未翻譯,請將其翻譯成適當的語言(中文(香港))

添加侧栏模块可以让您将自定义模块添加到您wiki的侧栏中。默认情况下,脚本会将存储在Template:RailModule的内容添加到侧栏底部(在循环模块的上方)。通过配置,您可以添加多个模块,最多可以将两个模块添加到侧栏顶部(在顶部广告模块的下方)。每个模块都包装在一个section.railModule.rail-module中。

侧栏模块的数量和高度是有限制的。添加的侧栏模块整体高度不能高于普通侧栏模块。新增侧栏模块的外形大小和整体高度不应高于常规侧栏模块的外形大小和高度。另外,只允许一个侧栏模块位于(预先设置的)最近Wiki活动模块的上方。

安裝方法[]

組態[]

想要将Template:RailModule的内容作为模块添加到侧栏顶部,请添加以下内容:

window.AddRailModule = [{prepend: true}];

想要向侧栏底部添加多个模块(例如:Template:FooTemplate:BarTemplate:Baz的内容),请添加以下内容:

window.AddRailModule = ['Template:Foo', 'Template:Bar', 'Template:Baz'];

想要同时向侧栏顶部和底部添加多个模块,请添加以下内容:

window.AddRailModule = [
    {page: 'Template:Foo', prepend: true},
    'Template:Bar',
    'Template:Baz',
];

注意:如果您向侧栏顶部添加了两个以上的模块,那么只有您设置添加的前两个模块会被允许添加。

window.AddRailModule = [
    {page: 'Template:Foo', prepend: true},  // 没有问题
    {page: 'Template:Bar', prepend: true},  // 没有问题
    {page: 'Template:Baz', prepend: true},  // 问题很大,不会添加到侧栏顶部而会添加到侧栏底部
];

每个模块的内容最多可以缓存maxAge秒,默认为300秒(5分钟)。如果您的模块是短暂性的,例如:模块内容需要保持最新(比如投票)、模块内容随机或依赖页面名称变量(比如{{PAGENAME}}),那么请设置maxAge为0秒。相反,如果您的模块是长效性的,可以设置maxAge为86400秒(1天)。

Using configuration options with Fandom Developers Wiki scripts

The instructions on this page describe how to use configuration options with a script. Here on the Fandom Developers Wiki, many scripts provide optional configuration settings as a mean to alter or enhance the default behavior of the script. When installing configuration options in your JavaScript file, please note that they need to go above the import statement in order to work — unless the directions say otherwise. In case MediaWiki:ImportJS is used to load the scripts, it will be executed last.

Configuration options load too late, don't work
// 1. AjaxRC import statement
importArticles({
    type: 'script',
    articles: [
        'u:dev:MediaWiki:AjaxRC.js'
    ]
});

// 2. AjaxRC configuration option
window.ajaxRefresh = 30000;
Proper placement of configuration options
// 1. AjaxRC configuration option
window.ajaxRefresh = 30000;

// 2. AjaxRC import statement
importArticles({
    type: 'script',
    articles: [
        'u:dev:MediaWiki:AjaxRC.js'
    ]
});

样式[]

要针对所有自定义模块,请使用选择器.railModule

要针对特定的自定义模块,可以考虑在您的模板中将每个模块的内容包装在自己独特的容器元素中,然后选择这个元素来代替。

Forks[]

NewPagesModule[]

After you've installed the script, copy the following contents to the Template:NewPagesModule page on your wiki:

<h2>{{int:newpages}}</h2>
<div class="new-pages-rail-module">
{{Special:NewPages/4}}
<div class="more">'''[[Special:NewPages|{{int:oasis-more}}]]'''</div>
</div>

Also import the script's stylesheet to customize the module:

And add your template to following parameters (in addition to those already connected; if there are none, then only one template):

window.AddRailModule = ['Template:Foo', 'Template:Bar', 'Template:Baz', 'Template:NewPagesModule'];
Advertisement