/** * Determine which FilePage to show based on skin and File type (image/video) * * @param Title $oTitle * @param Article $oArticle * @return bool true */ public static function onArticleFromTitle(&$oTitle, &$oArticle) { if ($oTitle instanceof Title && $oTitle->getNamespace() == NS_FILE) { $oArticle = WikiaFileHelper::getMediaPage($oTitle); } return true; }