Template:SkinInstall/yue
- 下載文件,將佢放置於你
skins/
文件夾嘅SkinInstall
目錄中。 - 將以下代碼添加到你LocalSettings.php 嘅底部:
require_once "$IP/skins/SkinInstall/SkinInstall.php";
- Done - 喺你嘅wiki上打開Special:Version,確認佈景主題已經安裝成功。
Uses Lua: |
用途
Parameters are optional!
1=
- Set the skin name manually (defaults to the current page name without namespace prefix).
download-link=
- Overwrite the download link (defaults to {{DownloadGitSnapshot }})
basedir=
- Directory that repo should be installed in and front-end resources are exposed through (defaults to
skins
, change toextensions
if needed). localsettings=
- Pass custom PHP code that the user should include in LocalSettings.php
custom-steps=
- Additional steps (as an unordered list)
registration=
- New way to install
skin
orextension
.
Examples
Below a few examples of how to use this template:
Simple
{{SkinInstall}}
- 下載文件,將佢放置於你
skins/
文件夾嘅theskin
目錄中。- 將以下代碼添加到你LocalSettings.php 嘅底部:
require_once "$IP/skins/theskin/theskin.php";- Done - 喺你嘅wiki上打開Special:Version,確認佈景主題已經安裝成功。
Name
{{SkinInstall|erudite}}
- 下載文件,將佢放置於你
skins/
文件夾嘅erudite
目錄中。- 將以下代碼添加到你LocalSettings.php 嘅底部:
require_once "$IP/skins/erudite/erudite.php";- Done - 喺你嘅wiki上打開Special:Version,確認佈景主題已經安裝成功。
Download link
{{SkinInstall |download-link=[http://bits.wikimedia.org/example.zip Download] }}
- Download,將佢放置於你
skins/
文件夾嘅theskin
目錄中。- 將以下代碼添加到你LocalSettings.php 嘅底部:
require_once "$IP/skins/theskin/theskin.php";- Done - 喺你嘅wiki上打開Special:Version,確認佈景主題已經安裝成功。
LocalSettings
{{SkinInstall |localsettings= $wgUseAjax = true; $wgEnableMWSuggest = true; }}
- 下載文件,將佢放置於你
skins/
文件夾嘅theskin
目錄中。- 將以下代碼添加到你LocalSettings.php 嘅底部:
require_once "$IP/skins/theskin/theskin.php"; $wgUseAjax = true; $wgEnableMWSuggest = true;- Done - 喺你嘅wiki上打開Special:Version,確認佈景主題已經安裝成功。
Custom steps
{{SkinInstall |custom-steps= * Lorem ipsum dolor sit amet * Foo bar baz quux [[sandbox]] }}
- 下載文件,將佢放置於你
skins/
文件夾嘅theskin
目錄中。- 將以下代碼添加到你LocalSettings.php 嘅底部:
require_once "$IP/skins/theskin/theskin.php";- Lorem ipsum dolor sit amet
- Foo bar baz quux sandbox
- Done - 喺你嘅wiki上打開Special:Version,確認佈景主題已經安裝成功。
Skin registration
{{SkinInstall |registration=Yes }}
- 下載文件,將佢放置於你
skins/
文件夾嘅theskin
目錄中。- 將以下代碼添加到你LocalSettings.php 嘅底部:
wfLoadSkin( 'theskin' );- Done - 喺你嘅wiki上打開Special:Version,確認佈景主題已經安裝成功。
對於使用MediaWiki 1.24或更舊版本嘅用户:
上面嘅説明介紹嘅係從MediaWiki 1.25之後,用
wfLoadSkin()
安裝佈景主題嘅新方法。 如果需要喺早期版本中安裝此佈景主題,請唔好用wfLoadSkin( 'theskin' );
,應該用:require_once "$IP/skins/theskin/theskin.php";(如果要喺早期發行版本中安裝此佈景主題,你可能需要下載被標記為來自Special:SkinDistributor嘅版本。)
Vagrant
{{SkinInstall |vagrant=1 }}
- If using Vagrant , install with
vagrant roles enable 1 -p
Manual installation
- 下載文件,將佢放置於你
skins/
文件夾嘅theskin
目錄中。- 將以下代碼添加到你LocalSettings.php 嘅底部:
require_once "$IP/skins/theskin/theskin.php";- Done - 喺你嘅wiki上打開Special:Version,確認佈景主題已經安裝成功。
Everything
{{SkinInstall|Example |download-link=[http://bits.wikimedia.org/example.zip Download] |localsettings= $wgUseAjax = true; |db-update=Yes |custom-steps= * Lorem ipsum dolor sit amet * Foo bar baz quux [[sandbox]] |registration=Yes |vagrant=accountinfo }}
- If using Vagrant , install with
vagrant roles enable accountinfo -p
Manual installation
- Download,將佢放置於你
skins/
文件夾嘅Example
目錄中。- 將以下代碼添加到你LocalSettings.php 嘅底部:
wfLoadSkin( 'Example' ); $wgUseAjax = true;- Lorem ipsum dolor sit amet
- Foo bar baz quux sandbox
- Done - 喺你嘅wiki上打開Special:Version,確認佈景主題已經安裝成功。
對於使用MediaWiki 1.24或更舊版本嘅用户:
上面嘅説明介紹嘅係從MediaWiki 1.25之後,用
wfLoadSkin()
安裝佈景主題嘅新方法。 如果需要喺早期版本中安裝此佈景主題,請唔好用wfLoadSkin( 'Example' );
,應該用:require_once "$IP/skins/Example/Example.php";(如果要喺早期發行版本中安裝此佈景主題,你可能需要下載被標記為來自Special:SkinDistributor嘅版本。)
No description.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Skin name over-ride | 1 | Set the skin name manually
| String | optional |
Download link over-ride | download-link | Overwrite the download link
| String | optional |
New-style registration | registration | Whether to use the new style to register the skin | Boolean | optional |
Installation directory | basedir | Directory that repo should be installed in and front-end resources are exposed through (defaults to skins, change to extensions if needed). | String | optional |
LocalSettings code | localsettings | Custom PHP code that the user should include in LocalSettings.php | String | optional |
Custom steps | custom-steps | Additional steps (as an unordered * list) that you need to undertake to install the skin. | String | optional |
nocredits | nocredits | no description | Boolean | optional |