werdnum / mediawiki-lightncandy-skin
Simple library for creating LightnCandy based skins for MediaWiki.
Installs: 169
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/werdnum/mediawiki-lightncandy-skin
This package is not auto-updated.
Last update: 2025-10-11 22:41:04 UTC
README
This is a simple toolkit for creating LightNCandy-based skins for MediaWiki.
To create a LightNCandy-based skin, you do the following:
- Create your template class, just make a class that derives from LightNCandyTemplate, and override the getTemplate() method to return a LightNCandy template method. The easiest way to implement this is to use my simple-lightncandy class and call its getTemplate() method.
- Create your skin class. Derive from SkinTemplate and set its $template member variable to the class name of your template class.
- Register your skin with the factory.
For a full example, see the Blueprint skin.