2015-04-27 14:05:31 +00:00
|
|
|
<?php
|
2015-05-06 12:49:15 +00:00
|
|
|
|
2015-04-27 14:05:31 +00:00
|
|
|
class PortableInfoboxHooks {
|
2015-06-19 12:16:07 +00:00
|
|
|
const PARSER_TAG_GALLERY = 'gallery';
|
|
|
|
|
2015-04-27 14:05:31 +00:00
|
|
|
static public function onBeforePageDisplay( OutputPage $out, Skin $skin ) {
|
2015-05-18 13:56:45 +00:00
|
|
|
if ( F::app()->checkSkin( 'monobook', $skin ) ) {
|
|
|
|
Wikia::addAssetsToOutput( 'portable_infobox_monobook_scss' );
|
|
|
|
} else {
|
|
|
|
Wikia::addAssetsToOutput( 'portable_infobox_scss' );
|
|
|
|
}
|
|
|
|
|
2015-04-27 14:05:31 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-06-09 10:14:49 +00:00
|
|
|
|
|
|
|
static public function onImageServingCollectImages( &$imageNamesArray, $articleTitle ) {
|
|
|
|
if ( $articleTitle ) {
|
2015-06-23 08:41:15 +00:00
|
|
|
$infoboxImages = PortableInfoboxDataService::newFromTitle( $articleTitle )->getImages();
|
2015-06-09 10:14:49 +00:00
|
|
|
if ( !empty( $infoboxImages ) ) {
|
2015-06-22 15:15:26 +00:00
|
|
|
$imageNamesArray = array_merge( $infoboxImages, (array)$imageNamesArray );
|
2015-06-09 10:14:49 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-22 15:15:26 +00:00
|
|
|
|
2015-06-09 10:14:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-06-19 10:31:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Store information about raw content of all galleries in article to handle images in infoboxes
|
|
|
|
*
|
|
|
|
* @param $name Parser tag name
|
|
|
|
* @param $marker substitution marker
|
|
|
|
* @param $content raw tag contents
|
|
|
|
* @param $attributes
|
|
|
|
* @param $parser
|
|
|
|
* @param $frame
|
2015-08-20 13:14:23 +00:00
|
|
|
*
|
|
|
|
* @return bool
|
2015-06-19 10:31:22 +00:00
|
|
|
*/
|
|
|
|
static public function onParserTagHooksBeforeInvoke( $name, $marker, $content, $attributes, $parser, $frame ) {
|
2015-06-19 12:16:07 +00:00
|
|
|
if ( $name === self::PARSER_TAG_GALLERY ) {
|
2015-06-19 10:31:22 +00:00
|
|
|
\Wikia\PortableInfobox\Helpers\PortableInfoboxDataBag::getInstance()->setGallery( $marker, $content );
|
|
|
|
}
|
|
|
|
|
2015-06-09 10:14:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-08-20 13:14:23 +00:00
|
|
|
|
|
|
|
static public function onWgQueryPages( &$queryPages = [ ] ) {
|
|
|
|
$queryPages[] = [ 'AllinfoboxesQueryPage', 'AllInfoboxes' ];
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2015-09-08 17:42:49 +00:00
|
|
|
|
|
|
|
static public function onAllInfoboxesQueryRecached() {
|
|
|
|
F::app()->wg->Memc->delete( wfMemcKey( ApiQueryAllinfoboxes::MCACHE_KEY ) );
|
|
|
|
return true;
|
|
|
|
}
|
2015-04-27 14:05:31 +00:00
|
|
|
}
|