MediaWiki  REL1_23
SpecialCreateAccount.php
Go to the documentation of this file.
00001 <?php
00030 class SpecialCreateAccount extends SpecialRedirectToSpecial {
00031     function __construct() {
00032         parent::__construct( 'CreateAccount', 'Userlogin', 'signup', array( 'returnto', 'returntoquery', 'uselang' ) );
00033     }
00034 
00035     // No reason to hide this link on Special:Specialpages
00036     public function isListed() {
00037         return true;
00038     }
00039 
00040     protected function getGroupName() {
00041         return 'login';
00042     }
00043 }