Manuel:ConvertExtensionToRegistration.php

From mediawiki.org
This page is a translated version of the page Manual:ConvertExtensionToRegistration.php and the translation is 41% complete.
Version de MediaWiki :
1.25
Gerrit change 166705

Détails

convertExtensionToRegistration.php is a maintenance script, which helps you migrating extensions and skins from PHP entry points to a JSON metadata file named extension.json or skin.json. If your extension supports older versions of MediaWiki, you should keep your PHP entry point DirName/FileName.php until you drop support for those older versions.

Options et arguments

Option/Argument Description Type
<path> Location to the PHP entry point you wish to convert obligatoire
--skin Whether to write to skin.json; use this option for converting a skin! optionnel
--config-prefix Custom prefix for configuration settings optionnel

Utilisation

php maintenance/convertExtensionToRegistration.php <path> [ --skin| --config-prefix ]
Terminal

This detects many variable declarations in the entry point FooBar.php and converts them into settings in an extension.json file. Afterwards, you might still want to manually clean up these declarations inside the FooBar.php file and add a call to wfLoadExtension() as detailed on Manual:Extension registration#Migration for extension developers.

Voir aussi