wiki.techinc.nl/includes/SpecialUserlogout.php

27 lines
401 B
PHP
Raw Normal View History

<?php
/**
*
* @addtogroup 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
if (wfRunHooks('UserLogout', array(&$wgUser))) {
2006-01-07 13:31:29 +00:00
$wgUser->logout();
wfRunHooks('UserLogoutComplete', array(&$wgUser));
2006-01-07 13:31:29 +00:00
$wgOut->setRobotpolicy( 'noindex,nofollow' );
$wgOut->addHTML( wfMsgExt( 'logouttext', array( 'parse' ) ) );
$wgOut->returnToMain();
2006-01-07 13:31:29 +00:00
}
2003-04-14 23:10:40 +00:00
}