summaryrefslogtreecommitdiff
path: root/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.local.php
blob: a9458ec31651f8c26eef75979ffc967a987b4be0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/**
 * Custom ResourceLoader module that loads a Geshi.css per-wiki.
 */
class HighlightGeSHilocal extends ResourceLoaderWikiModule {
	/**
	 * @param $context ResourceLoaderContext
	 * @return array
	 */
	protected function getPages( ResourceLoaderContext $context ) {
		return array(
			'MediaWiki:Geshi.css'      => array( 'type' => 'style' ),
		);
	}
}