2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
*
|
2007-01-20 15:09:52 +00:00
|
|
|
* @addtogroup SpecialPage
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-09-02 23:28:24 +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-01-08 18:10:58 +00:00
|
|
|
$wgUser->logout();
|
|
|
|
|
$wgOut->setRobotpolicy( 'noindex,nofollow' );
|
2008-04-09 12:44:53 +00:00
|
|
|
|
|
|
|
|
// Hook.
|
|
|
|
|
$injected_html = '';
|
|
|
|
|
wfRunHooks( 'UserLogoutComplete', array(&$wgUser, &$injected_html) );
|
|
|
|
|
|
|
|
|
|
$wgOut->addHTML( wfMsgExt( 'logouttext', array( 'parse' ) ) . $injected_html );
|
2008-01-08 18:10:58 +00:00
|
|
|
$wgOut->returnToMain();
|
2008-04-09 12:44:53 +00:00
|
|
|
}
|