Template:SkinInstall

This page is a translated version of the page Template:SkinInstall and the translation is 86% complete.
  • ダウンロードして、ファイルを skins/ フォルダー内の SkinInstall という名前のディレクトリ内に配置します。
  • ファイル LocalSettings.php の末尾に以下のコードを追加してください:
    require_once "$IP/skins/SkinInstall/SkinInstall.php";
    
  • Yes 完了 - 自分のウィキの Special:Version に移動して、外装が正しくインストールされたことを確認してください。
テンプレートの解説

使用法

パラメーターは省略可能です。

1=
外装名を手動で設定します (既定では、現在のページ名から名前空間接頭辞を除いたものになります)。
download-link=
ダウンロード リンクを上書きします (既定値は {{DownloadGitSnapshot }})
basedir=
Directory that repo should be installed in and front-end resources are exposed through (defaults to skins, change to extensions 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 or extension.

以下、このテンプレートの使用例をいくつか紹介します:

単純

{{SkinInstall}}
  • ダウンロードして、ファイルを skins/ フォルダー内の theskin という名前のディレクトリ内に配置します。
  • ファイル LocalSettings.php の末尾に以下のコードを追加してください:
    require_once "$IP/skins/theskin/theskin.php";
    
  • Yes 完了 - 自分のウィキの Special:Version に移動して、外装が正しくインストールされたことを確認してください。

名前

{{SkinInstall|erudite}}
  • ダウンロードして、ファイルを skins/ フォルダー内の erudite という名前のディレクトリ内に配置します。
  • ファイル LocalSettings.php の末尾に以下のコードを追加してください:
    require_once "$IP/skins/erudite/erudite.php";
    
  • Yes 完了 - 自分のウィキの Special:Version に移動して、外装が正しくインストールされたことを確認してください。

ダウンロード リンク

{{SkinInstall
|download-link=[http://bits.wikimedia.org/example.zip Download]
}}
  • Downloadして、ファイルを skins/ フォルダー内の theskin という名前のディレクトリ内に配置します。
  • ファイル LocalSettings.php の末尾に以下のコードを追加してください:
    require_once "$IP/skins/theskin/theskin.php";
    
  • Yes 完了 - 自分のウィキの Special:Version に移動して、外装が正しくインストールされたことを確認してください。

LocalSettings

{{SkinInstall
|localsettings=
$wgUseAjax = true;
$wgEnableMWSuggest = true;
}}
  • ダウンロードして、ファイルを skins/ フォルダー内の theskin という名前のディレクトリ内に配置します。
  • ファイル LocalSettings.php の末尾に以下のコードを追加してください:
    require_once "$IP/skins/theskin/theskin.php";
    $wgUseAjax = true;
    $wgEnableMWSuggest = true;
    
  • Yes 完了 - 自分のウィキの Special:Version に移動して、外装が正しくインストールされたことを確認してください。

カスタムの手順

{{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
  • Yes 完了 - 自分のウィキの Special:Version に移動して、外装が正しくインストールされたことを確認してください。

外装の登録

{{SkinInstall
|registration=Yes
}}
  • ダウンロードして、ファイルを skins/ フォルダー内の theskin という名前のディレクトリ内に配置します。
  • ファイル LocalSettings.php の末尾に以下のコードを追加してください:
    wfLoadSkin( 'theskin' );
    
  • Yes 完了 - 自分のウィキの Special:Version に移動して、外装が正しくインストールされたことを確認してください。

MediaWiki 1.24 以前を稼働させている利用者へ:

上記の手順では、wfLoadSkin() を使用して外装をインストールする MediaWiki 1.25 以降の新しい方法を記載しています。 この外装を過去のバージョンにインストールする必要がある場合は、wfLoadSkin( 'theskin' ); の代わりに以下を使用する必要があります:

require_once "$IP/skins/theskin/theskin.php";

(過去のリリースで外装を動作させるには、Special:SkinDistributor より、そのリリース向けのタグが付けられたバージョンをダウンロードする必要があるかもしれません。)

Vagrant

{{SkinInstall
|vagrant=1
}}
  • Vagrant を使用している場合は、vagrant roles enable 1 -p でインストールします

手動インストール

  • ダウンロードして、ファイルを skins/ フォルダー内の theskin という名前のディレクトリ内に配置します。
  • ファイル LocalSettings.php の末尾に以下のコードを追加してください:
    require_once "$IP/skins/theskin/theskin.php";
    
  • Yes 完了 - 自分のウィキの Special:Version に移動して、外装が正しくインストールされたことを確認してください。

すべて

{{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
}}
  • Vagrant を使用している場合は、vagrant roles enable accountinfo -p でインストールします

手動インストール

  • Downloadして、ファイルを skins/ フォルダー内の Example という名前のディレクトリ内に配置します。
  • ファイル LocalSettings.php の末尾に以下のコードを追加してください:
    wfLoadSkin( 'Example' );
    $wgUseAjax = true;
    
  • Lorem ipsum dolor sit amet
  • Foo bar baz quux sandbox
  • Yes 完了 - 自分のウィキの Special:Version に移動して、外装が正しくインストールされたことを確認してください。

MediaWiki 1.24 以前を稼働させている利用者へ:

上記の手順では、wfLoadSkin() を使用して外装をインストールする MediaWiki 1.25 以降の新しい方法を記載しています。 この外装を過去のバージョンにインストールする必要がある場合は、wfLoadSkin( 'Example' ); の代わりに以下を使用する必要があります:

require_once "$IP/skins/Example/Example.php";

(過去のリリースで外装を動作させるには、Special:SkinDistributor より、そのリリース向けのタグが付けられたバージョンをダウンロードする必要があるかもしれません。)

No description.

Template parameters[Edit template data]

ParameterDescriptionTypeStatus
Skin name over-ride1

Set the skin name manually

Default
name of the current page name without namespace prefix
Stringoptional
Download link over-ridedownload-link

Overwrite the download link

Default
{{DownloadGitSnapshot}}
Stringoptional
New-style registrationregistration

Whether to use the new style to register the skin

Booleanoptional
Installation directorybasedir

Directory that repo should be installed in and front-end resources are exposed through (defaults to skins, change to extensions if needed).

Stringoptional
LocalSettings codelocalsettings

Custom PHP code that the user should include in LocalSettings.php

Stringoptional
Custom stepscustom-steps

Additional steps (as an unordered * list) that you need to undertake to install the skin.

Stringoptional
nocreditsnocredits

no description

Booleanoptional