Introduce mediawiki.RegExp module
[mediawiki.git] / includes / specials / SpecialMyRedirectPages.php
blob5ef03f133d4970fb32f90834fa21bd5413d38a84
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.
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
23 * @file
24 * @ingroup SpecialPage
27 /**
28 * Special page pointing to current user's user page.
30 * @ingroup SpecialPage
32 class SpecialMypage extends RedirectSpecialArticle {
33 public function __construct() {
34 parent::__construct( 'Mypage' );
37 /**
38 * @param string|null $subpage
39 * @return Title
41 public function getRedirect( $subpage ) {
42 if ( $subpage === null || $subpage === '' ) {
43 return Title::makeTitle( NS_USER, $this->getUser()->getName() );
46 return Title::makeTitle( NS_USER, $this->getUser()->getName() . '/' . $subpage );
50 /**
51 * Special page pointing to current user's talk page.
53 * @ingroup SpecialPage
55 class SpecialMytalk extends RedirectSpecialArticle {
56 public function __construct() {
57 parent::__construct( 'Mytalk' );
60 /**
61 * @param string|null $subpage
62 * @return Title
64 public function getRedirect( $subpage ) {
65 if ( $subpage === null || $subpage === '' ) {
66 return Title::makeTitle( NS_USER_TALK, $this->getUser()->getName() );
69 return Title::makeTitle( NS_USER_TALK, $this->getUser()->getName() . '/' . $subpage );
73 /**
74 * Special page pointing to current user's contributions.
76 * @ingroup SpecialPage
78 class SpecialMycontributions extends RedirectSpecialPage {
79 public function __construct() {
80 parent::__construct( 'Mycontributions' );
81 $this->mAllowedRedirectParams = array( 'limit', 'namespace', 'tagfilter',
82 'offset', 'dir', 'year', 'month', 'feed', 'deletedOnly',
83 'nsInvert', 'associated', 'newOnly', 'topOnly' );
86 /**
87 * @param string|null $subpage
88 * @return Title
90 public function getRedirect( $subpage ) {
91 return SpecialPage::getTitleFor( 'Contributions', $this->getUser()->getName() );
95 /**
96 * Special page pointing to current user's uploaded files.
98 * @ingroup SpecialPage
100 class SpecialMyuploads extends RedirectSpecialPage {
101 public function __construct() {
102 parent::__construct( 'Myuploads' );
103 $this->mAllowedRedirectParams = array( 'limit', 'ilshowall', 'ilsearch' );
107 * @param string|null $subpage
108 * @return Title
110 public function getRedirect( $subpage ) {
111 return SpecialPage::getTitleFor( 'Listfiles', $this->getUser()->getName() );
116 * Special page pointing to current user's uploaded files (including old versions).
118 * @ingroup SpecialPage
120 class SpecialAllMyUploads extends RedirectSpecialPage {
121 public function __construct() {
122 parent::__construct( 'AllMyUploads' );
123 $this->mAllowedRedirectParams = array( 'limit', 'ilsearch' );
127 * @param string|null $subpage
128 * @return Title
130 public function getRedirect( $subpage ) {
131 $this->mAddedRedirectParams['ilshowall'] = 1;
133 return SpecialPage::getTitleFor( 'Listfiles', $this->getUser()->getName() );