MediaWiki  1.29.2
UserNotLoggedIn.php
Go to the documentation of this file.
1 <?php
54 
67  public function __construct(
68  $reasonMsg = 'exception-nologin-text',
69  $titleMsg = 'exception-nologin',
70  $params = []
71  ) {
72  parent::__construct( $titleMsg, $reasonMsg, $params );
73  }
74 
79  public function report() {
80  // If an unsupported message is used, don't try redirecting to Special:Userlogin,
81  // since the message may not be compatible.
82  if ( !in_array( $this->msg, LoginHelper::getValidErrorMessages() ) ) {
83  parent::report();
84  }
85 
86  // Message is valid. Redirec to Special:Userlogin
87 
89 
91  $query = $context->getRequest()->getValues();
92  // Title will be overridden by returnto
93  unset( $query['title'] );
94  // Redirect to Special:Userlogin
95  $output->redirect( SpecialPage::getTitleFor( 'Userlogin' )->getFullURL( [
96  // Return to this page when the user logs in
97  'returnto' => $context->getTitle()->getFullText(),
98  'returntoquery' => wfArrayToCgi( $query ),
99  'warning' => $this->msg,
100  ] ) );
101 
102  $output->output();
103  }
104 }
$context
error also a ContextSource you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2612
UserNotLoggedIn
Redirect a user to the login page.
Definition: UserNotLoggedIn.php:53
SpecialPage\getTitleFor
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Definition: SpecialPage.php:82
ContextSource\getRequest
getRequest()
Get the WebRequest object.
Definition: ContextSource.php:78
ContextSource\getTitle
getTitle()
Get the Title object.
Definition: ContextSource.php:88
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
$query
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1572
UserNotLoggedIn\report
report()
Redirect to Special:Userlogin if the specified message is compatible.
Definition: UserNotLoggedIn.php:79
ContextSource\getOutput
getOutput()
Get the OutputPage object.
Definition: ContextSource.php:123
$output
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
Definition: hooks.txt:1049
MWException\msg
msg( $key, $fallback)
Get a message from i18n.
Definition: MWException.php:86
RequestContext\getMain
static getMain()
Static methods.
Definition: RequestContext.php:468
ErrorPageError\$params
$params
Definition: ErrorPageError.php:28
UserNotLoggedIn\__construct
__construct( $reasonMsg='exception-nologin-text', $titleMsg='exception-nologin', $params=[])
Definition: UserNotLoggedIn.php:67
ErrorPageError
An error page which can definitely be safely rendered using the OutputPage.
Definition: ErrorPageError.php:27
LoginHelper\getValidErrorMessages
static getValidErrorMessages()
Returns an array of all valid error messages.
Definition: LoginHelper.php:36
ErrorPageError\$msg
$msg
Definition: ErrorPageError.php:28
wfArrayToCgi
wfArrayToCgi( $array1, $array2=null, $prefix='')
This function takes one or two arrays as input, and returns a CGI-style string, e....
Definition: GlobalFunctions.php:408