mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
- 2.0.34 release;
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
<?php
|
||||
namespace um\core;
|
||||
|
||||
|
||||
// Exit if accessed directly
|
||||
if ( ! defined( 'ABSPATH' ) ) exit;
|
||||
|
||||
|
||||
if ( ! class_exists( 'um\core\Logout' ) ) {
|
||||
|
||||
|
||||
@@ -18,9 +20,19 @@ if ( ! class_exists( 'um\core\Logout' ) ) {
|
||||
* Logout constructor.
|
||||
*/
|
||||
function __construct() {
|
||||
add_action( 'template_redirect', array( &$this, 'logout_page' ), 10000 );
|
||||
}
|
||||
|
||||
add_action('template_redirect', array(&$this, 'logout_page'), 10000 );
|
||||
|
||||
/**
|
||||
* @param $redirect_url
|
||||
* @param $status
|
||||
*
|
||||
* @return false|string
|
||||
*/
|
||||
function safe_redirect_default( $redirect_url, $status ) {
|
||||
$login_page_id = UM()->config()->permalinks['login'];
|
||||
return get_permalink( $login_page_id );
|
||||
}
|
||||
|
||||
|
||||
@@ -28,44 +40,44 @@ if ( ! class_exists( 'um\core\Logout' ) ) {
|
||||
* Logout via logout page
|
||||
*/
|
||||
function logout_page() {
|
||||
|
||||
$language_code = '';
|
||||
$current_page_ID = get_the_ID();
|
||||
$logout_page_id = UM()->config()->permalinks['logout'];
|
||||
$trid = 0;
|
||||
|
||||
if ( is_home() /*|| is_front_page()*/ ) {
|
||||
if ( is_home() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$trid = 0;
|
||||
$language_code = '';
|
||||
if ( UM()->external_integrations()->is_wpml_active() ) {
|
||||
global $sitepress;
|
||||
$default_lang = $sitepress->get_default_language();
|
||||
$language_code = $sitepress->get_current_language();
|
||||
|
||||
$language_code = $sitepress->get_current_language();
|
||||
if ( $language_code == $default_lang ) {
|
||||
$language_code = '';
|
||||
}
|
||||
|
||||
$current_page_ID = get_the_ID();
|
||||
if ( function_exists( 'icl_object_id' ) ) {
|
||||
$trid = icl_object_id( $current_page_ID, 'page', true, $default_lang );
|
||||
} else {
|
||||
$trid = wpml_object_id_filter( $current_page_ID, 'page', true, $default_lang );
|
||||
}
|
||||
|
||||
if ( $language_code == $default_lang ) {
|
||||
$language_code = '';
|
||||
}
|
||||
}
|
||||
|
||||
$logout_page_id = UM()->config()->permalinks['logout'];
|
||||
if ( um_is_core_page( 'logout' ) || ( $trid > 0 && $trid == $logout_page_id ) ) {
|
||||
|
||||
if ( is_user_logged_in() ) {
|
||||
|
||||
add_filter( 'wp_safe_redirect_fallback', array( &$this, 'safe_redirect_default' ), 10, 2 );
|
||||
|
||||
if ( isset( $_REQUEST['redirect_to'] ) && $_REQUEST['redirect_to'] !== '' ) {
|
||||
wp_logout();
|
||||
session_unset();
|
||||
exit( wp_redirect( $_REQUEST['redirect_to'] ) );
|
||||
exit( wp_safe_redirect( $_REQUEST['redirect_to'] ) );
|
||||
} else if ( um_user('after_logout') == 'redirect_home' ) {
|
||||
wp_logout();
|
||||
session_unset();
|
||||
exit( wp_redirect( home_url( $language_code ) ) );
|
||||
exit( wp_safe_redirect( home_url( $language_code ) ) );
|
||||
} else {
|
||||
/**
|
||||
* UM hook
|
||||
@@ -92,12 +104,12 @@ if ( ! class_exists( 'um\core\Logout' ) ) {
|
||||
$redirect_url = apply_filters( 'um_logout_redirect_url', um_user( 'logout_redirect_url' ), um_user( 'ID' ) );
|
||||
wp_logout();
|
||||
session_unset();
|
||||
exit( wp_redirect( $redirect_url ) );
|
||||
|
||||
exit( wp_safe_redirect( $redirect_url ) );
|
||||
}
|
||||
|
||||
} else {
|
||||
exit( wp_redirect( home_url( $language_code ) ) );
|
||||
add_filter( 'wp_safe_redirect_fallback', array( &$this, 'safe_redirect_default' ), 10, 2 );
|
||||
exit( wp_safe_redirect( home_url( $language_code ) ) );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user