mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-28 01:50:09 +00:00
Merge "Always load MMV on Flow pages"
This commit is contained in:
commit
8ec3cc3895
|
@ -93,12 +93,16 @@ class MultimediaViewerHooks {
|
|||
public static function getModulesForArticle( &$out, &$skin ) {
|
||||
$pageHasThumbnails = count( $out->getFileSearchOptions() ) > 0;
|
||||
$pageIsFilePage = $out->getTitle()->inNamespace( NS_FILE );
|
||||
// TODO: Have Flow work out if there are any images on the page
|
||||
$pageIsFlowPage = ExtensionRegistry::getInstance()->isLoaded( 'Flow' ) &&
|
||||
// CONTENT_MODEL_FLOW_BOARD
|
||||
$out->getTitle()->getContentModel() === 'flow-board';
|
||||
$fileRelatedSpecialPages = [ 'NewFiles', 'ListFiles', 'MostLinkedFiles',
|
||||
'MostGloballyLinkedFiles', 'UncategorizedFiles', 'UnusedFiles', 'Search' ];
|
||||
$pageIsFileRelatedSpecialPage = $out->getTitle()->inNamespace( NS_SPECIAL )
|
||||
&& in_array( $out->getTitle()->getText(), $fileRelatedSpecialPages );
|
||||
|
||||
if ( $pageHasThumbnails || $pageIsFilePage || $pageIsFileRelatedSpecialPage ) {
|
||||
if ( $pageHasThumbnails || $pageIsFilePage || $pageIsFileRelatedSpecialPage || $pageIsFlowPage ) {
|
||||
return self::getModules( $out );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue