Go to file
2018-08-22 10:04:07 +02:00
i18n Special:AllInfoboxes i18n 2018-08-03 11:54:47 +02:00
includes Add inheritance check to NodeFactory 2018-08-22 10:04:07 +02:00
resources Add browser compatibility fixes and add mixins to the stylesheet 2018-08-20 17:38:38 +02:00
templates Change .pi-image to .pi-media 2018-08-12 15:56:54 +02:00
tests/phpunit Add browser compatibility fixes and add mixins to the stylesheet 2018-08-20 17:38:38 +02:00
extension.json Require MW >= 1.29 2018-08-19 13:35:46 +02:00
LICENSE Initial commit 2018-07-24 07:10:16 +02:00
README.md Update README and extension.json 2018-08-13 17:28:23 +02:00

mediawiki-PortableInfobox

Port of FANDOM's https://github.com/Wikia/app/tree/dev/extensions/wikia/PortableInfobox extension to the MediaWiki 1.31+

Installation

Grab the latest release from GitHub and unpack it into extensions\PortableInfobox directory in your MediaWiki installation or clone this repository, by using these commands:

cd extensions
git clone https://github.com/Luqgreg/mediawiki-PortableInfobox.git PortableInfobox --branch master --depth 1

and add the following code at the bottom of LocalSettings.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)

Usage

See: https://community.wikia.com/wiki/Help:Infoboxes

<media /> tag

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

User-facing differences from the original version

  • It's based on Wikia/app@b9fcbe5d6d and there might be some features, that were introduced in the original version at a later date, but they're absent here
  • Europa theme was removed.
  • .pi-theme-default class is applied instead of .pi-theme-wikia to the infobox, when no theme is specified.
  • When a <gallery> tag is passed to the infobox with images without captions, file name is used instead of not showing the image.
  • When embedding a video in the infobox additional class .pi-video is added to the <figure> tag.
  • Videos use <video> tags instead of showing video in a modal after clicking a thumbnail.
  • .pi-image class is no longer present in the <figure> tag with a video, instead .pi-media class is applied to all media elements.
  • .pi-image-collection classes were changed to .pi-media-collection.
  • Mobile skin doesn't get separate styling.
  • It may be a little more buggy :)