3 * Performs the unwatch actions on a page
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 use MediaWiki\Context\IContextSource
;
24 use MediaWiki\HTMLForm\HTMLForm
;
25 use MediaWiki\Watchlist\WatchedItemStore
;
26 use MediaWiki\Watchlist\WatchlistManager
;
29 * Page removal from a user's watchlist
33 class UnwatchAction
extends WatchAction
{
35 private WatchlistManager
$watchlistManager;
38 * @param Article $article
39 * @param IContextSource $context
40 * @param WatchlistManager $watchlistManager
41 * @param WatchedItemStore $watchedItemStore
43 public function __construct(
45 IContextSource
$context,
46 WatchlistManager
$watchlistManager,
47 WatchedItemStore
$watchedItemStore
49 parent
::__construct( $article, $context, $watchlistManager, $watchedItemStore );
50 $this->watchlistManager
= $watchlistManager;
53 public function getName() {
57 public function onSubmit( $data ) {
58 $this->watchlistManager
->removeWatch(
59 $this->getAuthority(),
66 protected function getFormFields() {
71 'default' => $this->msg( 'confirm-unwatch-top' )->parse()
76 protected function alterForm( HTMLForm
$form ) {
77 parent
::alterForm( $form );
78 $form->setWrapperLegendMsg( 'removewatch' );
79 $form->setSubmitTextMsg( 'confirm-unwatch-button' );
82 public function onSuccess() {
83 $msgKey = $this->getTitle()->isTalkPage() ?
'removedwatchtext-talk' : 'removedwatchtext';
84 $this->getOutput()->addWikiMsg( $msgKey, $this->getTitle()->getPrefixedText() );
87 public function doesWrites() {