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 $user->setNewtalk( false );
34 $this->getResult()->addValue( null, $this->getModuleName(), 'success' );
37 public function isWriteMode() {
41 public function mustBePosted() {
45 protected function getExamplesMessages() {
48 => 'apihelp-clearhasmsg-example-1',
52 public function getHelpUrls() {
53 return 'https://www.mediawiki.org/wiki/API:ClearHasMsg';