mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
33 lines
722 B
PHP
33 lines
722 B
PHP
|
<?php
|
||
|
|
||
|
class VisualEditorHooks {
|
||
|
/**
|
||
|
* Adds VisualEditor JS to the output if in the correct namespace
|
||
|
*
|
||
|
* @param $output OutputPage
|
||
|
* @param $skin Skin
|
||
|
*/
|
||
|
public static function onPageDisplay( &$output, &$skin ) {
|
||
|
if ( self::loadVisualEditor( $output, $skin ) ) {
|
||
|
$output->addModules( array( 'ext.visualEditor.core' ) );
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Determines whether or not we should construct the loader.
|
||
|
*
|
||
|
* @param $output OutputPage
|
||
|
* @param $skin Skin
|
||
|
*/
|
||
|
public static function loadVisualEditor( &$output, &$skin ) {
|
||
|
// Vector skin supported for now.
|
||
|
if ( $skin->getSkinName() !== 'vector' ) {
|
||
|
return false;
|
||
|
}
|
||
|
//TODO: check namespace, user permissions...
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
}
|