Extension:RedirectAfterLogout

Category:Extensions which host their code in-wiki Category:Unmaintained extensions#RedirectAfterLogout Category:Extensions without an imageCategory:Extensions without a compatibility policyCategory:Public domain licensed extensions
MediaWiki extensions manual
RedirectAfterLogout
Release status: unmaintainedCategory:Unmaintained extensions
Implementation User activity Category:User activity extensions
Description Allows wiki administrators to redirect to a specific page after a user has logged out
Author(s) Marcel Minke (Maziminketalk)
Latest version 1.0 (2008-12-01)
MediaWiki 1.14+Category:Extensions with manual MediaWiki version
Database changes No
License Public domain
Download See section code
$wgPageToRedirectAfterLogout
Category:All extensionsCategory:Extensions not in ExtensionJson

The RedirectAfterLogout extension is an adaption of the former RedirectOnLogin extension which allows you to redirect a user to a certain wiki page after having logged out.

Compatibility

The extension was created for MW 1.14a. Nevertheless this extension should work fine on all MediaWiki versions which support UserLogout hook and $wgOut->redirect().

Please update this page when you have tested the extension on other versions.

Tested on
  • 1.11.0
  • 1.13
  • 1.14
  • 1.17
  • 1.21.1
  • 1.25.2
  • ... (please add other tested versions)

Installation

  1. Create a page at "extensions/redirectAfterLogout.php" containing the code
  2. Add the following lines to your Localsettings.php file and adapt them:
//absolute path from web root
require_once("extensions/redirectAfterLogout.php");

//wiki page to redirect to (adjust path and page title)
$wgPageToRedirectAfterLogout = "/path_to_mediawiki/index.php?title=yourpage";

Code

<?php
//not called from the software -> show warning
if( ! defined( 'MEDIAWIKI' ) ) {
    echo( "This file is an extension to the MediaWiki software, and cannot be used standalone.\n" );
    die( 1 );
}
 
$wgExtensionCredits['other'][] = array(
    'name'=>'RedirectAfterLogout',
    'version'=> '1.0',
    'author'=>'Marcel Minke',
    'url'=>'https://www.mediawiki.org/wiki/Extension:RedirectAfterLogout',
    'description' => 'Redirect to a certain page after logout'
);
 
//wiki page to redirect to (adjust path and page title)
$wgPageToRedirectAfterLogout = "/path_to_mediawiki/index.php?title=yourpage"; 
 
$wgHooks['UserLogout'][] = 'redirectAfterLogout';
 
function redirectAfterLogout(&$user) {
        global $wgOut, $wgPageToRedirectAfterLogout;
        $wgOut->redirect( $wgPageToRedirectAfterLogout );        
        
        return true;
}
Category:Redirect extensions
Category:All extensions Category:Extensions not in ExtensionJson Category:Extensions which host their code in-wiki Category:Extensions with manual MediaWiki version Category:Extensions without a compatibility policy Category:Extensions without an image Category:Public domain licensed extensions Category:Redirect extensions Category:Unmaintained extensions Category:UserLogout extensions Category:User activity extensions