Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
10 / 10 |
ChessBrowserHooks | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
4 | |
100.00% |
10 / 10 |
onParserFirstCallInit | |
100.00% |
1 / 1 |
1 | |
100.00% |
3 / 3 |
|||
onOutputPageParserOutput | |
100.00% |
1 / 1 |
3 | |
100.00% |
7 / 7 |
<?php | |
/** | |
* This file is a part of ChessBrowser. | |
* | |
* ChessBrowser is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
* GNU General Public License for more details. | |
* | |
* You should have received a copy of the GNU General Public License | |
* along with this program. If not, see <https://www.gnu.org/licenses/>. | |
* | |
* @file ChessBrowserHooks | |
* @ingroup ChessBrowser | |
* @author Wugapodes | |
*/ | |
namespace MediaWiki\Extension\ChessBrowser; | |
use OutputPage; | |
use Parser; | |
use ParserOutput; | |
class ChessBrowserHooks { | |
/** | |
* Register parser hooks | |
* | |
* @param Parser $parser | |
*/ | |
public static function onParserFirstCallInit( Parser $parser ) { | |
$parser->setHook( 'pgn', [ ChessBrowser::class, 'newGame' ] ); | |
$parser->setHook( 'fen', [ ChessBrowser::class, 'newPosition' ] ); | |
} | |
/** | |
* Update OutputPage after ParserOutput is added, if it includes a chess board | |
* | |
* @param OutputPage $out | |
* @param ParserOutput $parserOutput | |
*/ | |
public static function onOutputPageParserOutput( OutputPage $out, ParserOutput $parserOutput ) { | |
if ( $parserOutput->getExtensionData( 'ChessViewerFEN' ) ) { | |
$out->addModuleStyles( 'ext.chessViewer.styles' ); | |
} | |
if ( $parserOutput->getExtensionData( 'ChessViewerTrigger' ) ) { | |
$out->addModuleStyles( [ 'ext.chessViewer.styles', 'jquery.makeCollapsible.styles' ] ); | |
$out->addModules( [ 'ext.chessViewer', 'jquery.makeCollapsible' ] ); | |
$numberOfGames = $parserOutput->getExtensionData( 'ChessViewerNumGames' ); | |
} | |
} | |
} |