mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks
synced 2024-11-23 22:44:42 +00:00
Use namespaced classes
Changes to the use statements done automatically via script Addition of missing use statement done manually Change-Id: If99e2c98969579306c7fdc626658bec5d6e26b5d
This commit is contained in:
parent
12182dbd18
commit
0da96a7000
|
@ -5,8 +5,8 @@ namespace MediaWiki\Extension\Thanks\Api;
|
|||
use ApiBase;
|
||||
use ApiMain;
|
||||
use DatabaseLogEntry;
|
||||
use EchoDiscussionParser;
|
||||
use LogEntry;
|
||||
use MediaWiki\Extension\Notifications\DiscussionParser;
|
||||
use MediaWiki\Extension\Notifications\Model\Event;
|
||||
use MediaWiki\Extension\Thanks\Storage\Exceptions\InvalidLogType;
|
||||
use MediaWiki\Extension\Thanks\Storage\Exceptions\LogDeleted;
|
||||
|
@ -93,7 +93,7 @@ class ApiCoreThank extends ApiThank {
|
|||
}
|
||||
if ( $type === 'rev' ) {
|
||||
$revision = $this->getRevisionFromId( $id );
|
||||
$excerpt = EchoDiscussionParser::getEditExcerpt( $revision, $this->getLanguage() );
|
||||
$excerpt = DiscussionParser::getEditExcerpt( $revision, $this->getLanguage() );
|
||||
$title = $this->getTitleFromRevision( $revision );
|
||||
$this->dieOnUserBlockedFromTitle( $user, $title );
|
||||
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
|
||||
namespace MediaWiki\Extension\Thanks;
|
||||
|
||||
use EchoAttributeManager;
|
||||
use EchoUserLocator;
|
||||
use ExtensionRegistry;
|
||||
use MediaWiki\Extension\Notifications\AttributeManager;
|
||||
use MediaWiki\Extension\Notifications\Hooks\BeforeCreateEchoEventHook;
|
||||
use MediaWiki\Extension\Notifications\Hooks\EchoGetBundleRulesHook;
|
||||
use MediaWiki\Extension\Notifications\Model\Event;
|
||||
use MediaWiki\Extension\Notifications\UserLocator;
|
||||
|
||||
/**
|
||||
* Hooks for Thanks extension
|
||||
|
@ -43,9 +43,9 @@ class EchoHooks implements BeforeCreateEchoEventHook, EchoGetBundleRulesHook {
|
|||
'web' => true,
|
||||
'expandable' => true,
|
||||
],
|
||||
EchoAttributeManager::ATTR_LOCATORS => [
|
||||
AttributeManager::ATTR_LOCATORS => [
|
||||
[
|
||||
[ EchoUserLocator::class, 'locateFromEventExtra' ],
|
||||
[ UserLocator::class, 'locateFromEventExtra' ],
|
||||
[ 'thanked-user-id' ]
|
||||
],
|
||||
],
|
||||
|
@ -61,9 +61,9 @@ class EchoHooks implements BeforeCreateEchoEventHook, EchoGetBundleRulesHook {
|
|||
'web' => true,
|
||||
'expandable' => true,
|
||||
],
|
||||
EchoAttributeManager::ATTR_LOCATORS => [
|
||||
AttributeManager::ATTR_LOCATORS => [
|
||||
[
|
||||
[ EchoUserLocator::class, 'locateFromEventExtra' ],
|
||||
[ UserLocator::class, 'locateFromEventExtra' ],
|
||||
[ 'thanked-user-id' ]
|
||||
],
|
||||
],
|
||||
|
|
|
@ -22,13 +22,13 @@ use MediaWiki\Context\RequestContext;
|
|||
use MediaWiki\Diff\Hook\DifferenceEngineViewHeaderHook;
|
||||
use MediaWiki\Diff\Hook\DiffToolsHook;
|
||||
use MediaWiki\Extension\Thanks\Api\ApiFlowThank;
|
||||
use MediaWiki\Hook\BeforePageDisplayHook;
|
||||
use MediaWiki\Hook\GetLogTypesOnUserHook;
|
||||
use MediaWiki\Hook\HistoryToolsHook;
|
||||
use MediaWiki\Hook\LogEventsListLineEndingHook;
|
||||
use MediaWiki\Hook\PageHistoryBeforeListHook;
|
||||
use MediaWiki\Html\Html;
|
||||
use MediaWiki\Linker\LinkTarget;
|
||||
use MediaWiki\Output\Hook\BeforePageDisplayHook;
|
||||
use MediaWiki\Output\OutputPage;
|
||||
use MediaWiki\Permissions\PermissionManager;
|
||||
use MediaWiki\Revision\RevisionLookup;
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
namespace MediaWiki\Extension\Thanks;
|
||||
|
||||
use LogFormatter;
|
||||
use MediaWiki\Message\Message;
|
||||
use MediaWiki\Title\Title;
|
||||
use MediaWiki\User\User;
|
||||
use Message;
|
||||
|
||||
/**
|
||||
* This class formats log entries for thanks
|
||||
|
|
Loading…
Reference in a new issue