4 * Created on August 26, 2014
6 * Copyright © 2014 Petr Bena (benapetr@gmail.com)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
27 * API module that clears the hasmsg flag for current user
30 class ApiClearHasMsg
extends ApiBase
{
31 public function execute() {
32 $user = $this->getUser();
33 if ( $this->getRequest()->wasPosted() ) {
34 $user->setNewtalk( false );
36 DeferredUpdates
::addCallableUpdate( function () use ( $user ) {
37 $user->setNewtalk( false );
40 $this->getResult()->addValue( null, $this->getModuleName(), 'success' );
43 public function isWriteMode() {
47 public function mustBePosted() {
51 protected function getExamplesMessages() {
54 => 'apihelp-clearhasmsg-example-1',
58 public function getHelpUrls() {
59 return 'https://www.mediawiki.org/wiki/API:ClearHasMsg';