Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
SpecialMycontributions
0.00% covered (danger)
0.00%
0 / 6
0.00% covered (danger)
0.00%
0 / 3
12
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 getRedirect
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 personallyIdentifiableTarget
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2/**
3 * Special pages that are used to get user independent links pointing to
4 * current user's pages (user page, talk page, contributions, etc.).
5 * This can let us cache a single copy of some generated content for all
6 * users or be linked in wikitext help pages.
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 * @ingroup SpecialPage
25 */
26
27namespace MediaWiki\Specials\Redirects;
28
29use MediaWiki\SpecialPage\RedirectSpecialPage;
30use MediaWiki\SpecialPage\SpecialPage;
31use MediaWiki\Title\Title;
32
33/**
34 * Special page pointing to current user's contributions.
35 *
36 * @ingroup SpecialPage
37 */
38class SpecialMycontributions extends RedirectSpecialPage {
39    public function __construct() {
40        parent::__construct( 'Mycontributions' );
41        $this->mAllowedRedirectParams = [ 'limit', 'namespace', 'tagfilter',
42            'offset', 'dir', 'year', 'month', 'feed', 'deletedOnly',
43            'nsInvert', 'associated', 'newOnly', 'topOnly', 'start', 'end' ];
44    }
45
46    /**
47     * @param string|null $subpage
48     * @return Title
49     */
50    public function getRedirect( $subpage ) {
51        return SpecialPage::getTitleFor( 'Contributions', $this->getUser()->getName() );
52    }
53
54    /**
55     * Target identifies a specific User. See T109724.
56     *
57     * @since 1.27
58     * @return bool
59     */
60    public function personallyIdentifiableTarget() {
61        return true;
62    }
63}
64/**
65 * Retain the old class name for backwards compatibility.
66 * @deprecated since 1.41
67 */
68class_alias( SpecialMycontributions::class, 'SpecialMycontributions' );