mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks
synced 2024-11-15 02:54:23 +00:00
f5db77c750
This requires 1.42 for some new names Changes to the use statements done automatically via script Addition of missing use statement done manually Change-Id: I1b433ab02231087e0f84a734092751ce2cf28b2c
51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Thanks;
|
|
|
|
use ExtensionRegistry;
|
|
use MediaWiki\Output\OutputPage;
|
|
use MobileContext;
|
|
use MobileFrontend\Hooks\BeforeSpecialMobileDiffDisplayHook;
|
|
|
|
/**
|
|
* HookHandler for extension MobileFrontend
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
*/
|
|
class MobileFrontendHandler implements
|
|
BeforeSpecialMobileDiffDisplayHook
|
|
{
|
|
/**
|
|
* Add thanks button to SpecialMobileDiff page
|
|
* @param OutputPage &$output OutputPage object
|
|
* @param MobileContext $ctx MobileContext object
|
|
* @param array $revisions Array with two elements, either nulls or RevisionRecord objects for
|
|
* the two revisions that are being compared in the diff
|
|
*/
|
|
public function onBeforeSpecialMobileDiffDisplay(
|
|
OutputPage &$output,
|
|
MobileContext $ctx,
|
|
array $revisions
|
|
) {
|
|
$rev = $revisions[1];
|
|
|
|
// If the MobileFrontend extension is installed and the user is
|
|
// logged in or recipient is not a bot if bots cannot receive thanks, show a 'Thank' link.
|
|
if ( $rev
|
|
&& ExtensionRegistry::getInstance()->isLoaded( 'MobileFrontend' )
|
|
&& $rev->getUser()
|
|
&& Hooks::canReceiveThanks( $rev->getUser() )
|
|
&& $output->getUser()->isRegistered()
|
|
) {
|
|
$output->addModules( [ 'ext.thanks.mobilediff' ] );
|
|
|
|
if ( $output->getRequest()->getSessionData( 'thanks-thanked-' . $rev->getId() ) ) {
|
|
// User already sent thanks for this revision
|
|
$output->addJsConfigVars( 'wgThanksAlreadySent', true );
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|