Extension:MyVariables
|
MyVariables Release status: stable |
|||
|---|---|---|---|
| Implementation | Variable | ||
| Description | Adds new built-in variables | ||
| Author(s) | Aran Dunkley, Pavel Astakhov | ||
| Last version | 3.1.2 (2013-05-03) | ||
| MediaWiki | 1.6.x and above | ||
| PHP | 5.2+ | ||
| Database changes | no | ||
| License | GPL v2 and later | ||
| Download | |||
| Example | [1] | ||
|
|||
| Check usage and version matrix | |||
The MyVariables extension adds new built-in variables:
| Variable | Description | Sample |
|---|---|---|
| {{CURRENTUSER}} | Login of current user | "Pastakhov" |
| {{CURRENTUSERREALNAME}} | Real name of current user | "Pavel Astakhov" |
| {{LOGO}} | Path to wiki logo | "/w/skins/common/images/wiki.png" |
| {{UUID}} | Random (v4) UUID | "65ba1a51-c723-4b9d-b1f3-13148d628322" |
| {{USERLANGUAGECODE}} | Language that the user specified in the preferences | "en", "en-ca", "ru", etc. |
Contents |
Download [edit]
You can download the extension directly from the MediaWiki source code repository (browse code). You can get:
- One of the extensions tags
Not all extensions have tags. Some extensions have tags for each release, in which case those tags have the same stability as the release. To download a tag
- Go to the tags list
- Click the name of the tag you want to download
- Click "snapshot"
- The latest version of one of the extensions branches
Each extension has a master branch containing the latest code (might be unstable). Extensions can have further branches as well.
- Go to the branches list
- Click the branch name
- Click "snapshot"
- A snapshot made during the release of a MediaWiki version.
This might be unstable and is not guaranteed to work with the associated MediaWiki version.
After you've got the code, save it into the extensions/MyVariables directory of your wiki.
If you are familiar with git and have shell access to your server, you can obtain the extension, with all its tags and branches, as follows:
cd extensions
git clone https://gerrit.wikimedia.org/r/p/mediawiki/extensions/MyVariables.git
Installation [edit]
- Download and extract the files in a directory called "
MyVariables" in your extensions/ folder. - Add the following code to your LocalSettings.php (at the bottom)
require_once( "$IP/extensions/MyVariables/MyVariables.php" );
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Notes [edit]
- This extension should not be confused with the Variables extension, which allows the use of variables in the computer programming sense.