Extension:PhpTags Functions
![]() Release status: beta |
|
---|---|
Implementation | PHP |
Description | Implements a lot of native PHP constants, functions and objects for the extension PhpTags |
Author(s) | Pavel Astakhov (pastakhovtalk) |
Latest version | 3.5.0 (2015-05-28) |
MediaWiki | >= 1.34.0 |
PHP | 5.3+ |
License | GNU General Public License 2.0 or later |
Download | |
|
|
Translate the PhpTags Functions extension if it is available at translatewiki.net | |
The PhpTags Functions extension implements a lot of native PHP constants, functions and objects for the PhpTags extension.
All the features of this extension are available only through the use of the PhpTags extension.
It provides the following features:
InstallationEdit
- Download and place the file(s) in a directory called
PhpTagsFunctions
in yourextensions/
folder. - Add the following code at the bottom of your
LocalSettings.php
:wfLoadExtension( 'PhpTagsFunctions' );
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
To users running MediaWiki 1.24 or earlier:
The instructions above describe the new way of installing this extension using wfLoadExtension()
.
If you need to install this extension on these earlier versions (MediaWiki 1.24 and earlier), instead of wfLoadExtension( 'PhpTagsFunctions' );
, you need to use:
require_once "$IP/extensions/PhpTagsFunctions/PhpTagsFunctions.php";