PortableInfobox/PortableInfoboxHooks.class.php

109 lines
2.6 KiB
PHP
Raw Normal View History

<?php
class PortableInfoboxHooks {
2015-06-19 12:16:07 +00:00
const PARSER_TAG_GALLERY = 'gallery';
public static function onBeforePageDisplay( OutputPage $out, Skin $skin ) {
if ( F::app()->checkSkin( 'monobook', $skin ) ) {
Wikia::addAssetsToOutput( 'portable_infobox_monobook_scss' );
} else {
Wikia::addAssetsToOutput( 'portable_infobox_scss' );
}
return true;
}
public static function onImageServingCollectImages( &$imageNamesArray, $articleTitle ) {
if ( $articleTitle ) {
$infoboxImages = PortableInfoboxDataService::newFromTitle( $articleTitle )->getImages();
if ( !empty( $infoboxImages ) ) {
$imageNamesArray = array_merge( $infoboxImages, (array)$imageNamesArray );
}
}
return true;
}
/**
* 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
*
* @return bool
*/
public static function onParserTagHooksBeforeInvoke( $name, $marker, $content, $attributes, $parser, $frame ) {
2015-06-19 12:16:07 +00:00
if ( $name === self::PARSER_TAG_GALLERY ) {
\Wikia\PortableInfobox\Helpers\PortableInfoboxDataBag::getInstance()->setGallery( $marker, $content );
}
return true;
}
public static function onWgQueryPages( &$queryPages = [ ] ) {
$queryPages[] = [ 'AllinfoboxesQueryPage', 'AllInfoboxes' ];
return true;
}
public static function onAllInfoboxesQueryRecached() {
F::app()->wg->Memc->delete( wfMemcKey( ApiQueryAllinfoboxes::MCACHE_KEY ) );
return true;
}
/**
* Purge memcache before edit
*
* @param $article Page|WikiPage
* @param $user
* @param $text
* @param $summary
* @param $minor
* @param $watchthis
* @param $sectionanchor
* @param $flags
* @param $status
*
* @return bool
*/
public static function onArticleSave( Page &$article, &$user, &$text, &$summary, $minor, $watchthis, $sectionanchor,
&$flags, &$status ) {
PortableInfoboxDataService::newFromTitle( $article->getTitle() )->purge();
return true;
}
/**
* Purge memcache before purge
*
* @param Page|WikiPage $article
*
* @return bool
*/
public static function onArticlePurge( Page &$article ) {
PortableInfoboxDataService::newFromTitle( $article->getTitle() )->purge();
return true;
}
2015-09-23 13:56:08 +00:00
/**
* Purge articles memcache when template is edited
*
* @param $articles Array of Titles
2015-09-23 13:56:08 +00:00
*
* @return bool
*/
public static function onBacklinksPurge( Array $articles ) {
foreach ( $articles as $title ) {
PortableInfoboxDataService::newFromTitle( $title )->purge();
}
return true;
}
}