mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
15 lines
362 B
PHP
15 lines
362 B
PHP
<?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' ),
|
|
);
|
|
}
|
|
}
|