Manual:$wgDisabledActions

This page is a translated version of the page Manual:$wgDisabledActions and the translation is 55% complete.
アクセス権: $wgDisabledActions
Array of disabled article actions, e.g. view, edit, dublincore, delete, etc.
導入されたバージョン:1.4.1
廃止予定になったバージョン:1.18.0 (Gerrit change 157140; git #8779f4b5)
除去されたバージョン:1.23.0 (Gerrit change 109891; git #e7b85e72)
許容される値:(文字列の配列)
既定値:array()

詳細

MediaWiki バージョン:
1.22

Array of disabled article actions, e.g. view, edit, dublincore, delete, etc. Manual:index.php のパラメーター を参照してください。

Deprecated since 1.18 and removed in 1.23. Just set $wgActions ['action'] = false; to disable an action.

Example of converting $wgDisabledActions to $wgActions:

// 古い書式
$wgDisabledActions = array( 'raw', 'render', 'credits' );

// 新しい書式
$wgActions['raw'] = false;
$wgActions['render'] = false;
$wgActions['credits'] = false;