Grab the latest release from [GitHub](https://github.com/Luqgreg/mediawiki-PortableInfobox/releases/latest) and unpack it into `extensions\PortableInfobox` directory in your MediaWiki installation or clone this repository, by using these commands:
and add the following code at the bottom of [LocalSettings.php](https://www.mediawiki.org/wiki/Manual:LocalSettings.php):
```php
wfLoadExtension( 'PortableInfobox' );
```
## Configuration
You can use several variables to modify extension's behaviour:
-`$wgAllInfoboxesMiserMode` (bool) - force AllInfoboxes query to be cached, even if `$wgMiserMode` is disabled. (default: true)
-`$wgAllInfoboxesSubpagesBlacklist` (array) - list of subpages in template namespace to omit by AllInfoboxes query. (default: [ "doc", "draft", "test" ])
-`$wgPortableInfoboxCustomImageWidth` (int) - size of image thumbnails used in infoboxes. (default: 300)
In the dev version, the `<media/>` tag was introduced in favor of `<image/>`, which still works (see (#aliases)). It allows users to embed images, videos, and audio files in the infobox, in the same way as `<image />` tag does in the original version.
#### Attributes
-`source` - name of the parameter
-`audio` - If set to `false`, it ignores all audio files
-`image` - If set to `false`, it ignores all images
-`video` - If set to `false`, it ignores all videos
#### Child tags
-`<default>`
-`<caption>`
#### Aliases
-`<audio />` - variation of `<media />` tag that allows only audio files
-`<image />` - variation of `<media />` tag that allows only images and videos (for backwards compatibilty, can be disabled with `video="false"`)
-`<video />` - variation of `<media />` tag that allows only videos
- It's based on Wikia/app@b9fcbe5d6db928e318d64ad0568ec2d09a3f406e and there might be some features, that were introduced in the original version at a later date, but they're absent here