wiki.techinc.nl/includes/specials/SpecialUserlogout.php

24 lines
452 B
PHP
Raw Normal View History

<?php
/**
* @file
* @ingroup SpecialPage
*/
2003-04-14 23:10:40 +00:00
/**
* constructor
*/
function wfSpecialUserlogout() {
2005-12-04 18:27:59 +00:00
global $wgUser, $wgOut;
2003-04-14 23:10:40 +00:00
2008-05-27 16:21:23 +00:00
$oldName = $wgUser->getName();
2008-01-08 18:10:58 +00:00
$wgUser->logout();
$wgOut->setRobotPolicy( 'noindex,nofollow' );
// Hook.
$injected_html = '';
2008-05-27 16:21:23 +00:00
wfRunHooks( 'UserLogoutComplete', array(&$wgUser, &$injected_html, $oldName) );
$wgOut->addHTML( wfMsgExt( 'logouttext', array( 'parse' ) ) . $injected_html );
2008-01-08 18:10:58 +00:00
$wgOut->returnToMain();
}