]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - includes/api/ApiClearHasMsg.php
MediaWiki 1.30.2-scripts2
[autoinstalls/mediawiki.git] / includes / api / ApiClearHasMsg.php
1 <?php
2
3 /**
4  * Created on August 26, 2014
5  *
6  * Copyright © 2014 Petr Bena (benapetr@gmail.com)
7  *
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.
12  *
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.
17  *
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
22  *
23  * @file
24  */
25
26 /**
27  * API module that clears the hasmsg flag for current user
28  * @ingroup API
29  */
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' );
35         }
36
37         public function isWriteMode() {
38                 return true;
39         }
40
41         public function mustBePosted() {
42                 return true;
43         }
44
45         protected function getExamplesMessages() {
46                 return [
47                         'action=clearhasmsg'
48                                 => 'apihelp-clearhasmsg-example-1',
49                 ];
50         }
51
52         public function getHelpUrls() {
53                 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:ClearHasMsg';
54         }
55 }