Gifari Industries - BD Cyber Security Team
Home
/
home
/
decohaslibrary
/
bist
/
wp-content
/
plugins
/
user-registration
/
includes
/
shortcodes
/
✏️
Editing: class-ur-shortcode-login.php
<?php /** * Login Shortcodes * * Show the login form * * @class UR_Shortcode_Login * @version 1.0.0 * @package UserRegistration/Shortcodes/Login */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * UR_Shortcode_Login Class. */ class UR_Shortcode_Login { /** * Get the shortcode content. * * @param array $atts Shortcode attributes. * @return string */ public static function get( $atts ) { return UR_Shortcodes::shortcode_wrapper( array( __CLASS__, 'output' ), $atts ); } /** * Output the shortcode. * * @param array $atts Shortcode attributes. */ public static function output( $atts ) { global $wp, $post; $redirect_url = isset( $atts['redirect_url'] ) ? trim( $atts['redirect_url'] ) : ''; $redirect_url = UR_Shortcodes::check_is_valid_redirect_url( $redirect_url ); $check_state = false; if ( isset( $atts['userState'] ) ) { $check_state = 'logged_out' === $atts['userState']; } if ( ! is_user_logged_in() || $check_state || ( isset( $_GET['page'] ) && 'user-registration-login-forms' === $_GET['page'] ) ) { // After password reset, add confirmation message. $is_password_resetted = get_transient( 'ur_password_resetted_flag' ); if ( ! empty( $is_password_resetted ) ) { ur_add_notice( __( 'Your password has been reset successfully.', 'user-registration' ) ); delete_transient( 'ur_password_resetted_flag' ); } $render_default = apply_filters( 'user_registration_login_render_default', true, $atts ); if ( isset( $wp->query_vars['ur-lost-password'] ) ) { UR_Shortcode_My_Account::lost_password(); } else if( $render_default ) { $recaptcha_enabled = ur_option_checked( 'user_registration_login_options_enable_recaptcha', false ); wp_enqueue_script( 'ur-common' ); wp_enqueue_script( 'user-registration' ); wp_enqueue_script( 'ur-form-validator' ); $recaptcha_node = ur_get_recaptcha_node( 'login', $recaptcha_enabled ); ob_start(); ur_get_template( 'myaccount/form-login.php', array( 'recaptcha_node' => $recaptcha_node, 'redirect' => esc_url_raw( $redirect_url ), ) ); $login_form = ob_get_clean(); echo $login_form; //phpcs:ignore } else { /** * Action to handles custom rendering logic for User Registration Login page. */ do_action( 'user_registration_login_custom_render' ); } } else { /** * Filters to modify logged_in_message. * * @param mixed $ur_logout_url UR logout URL. */ /* translators: %s - Link to logout. */ echo wp_kses_post( apply_filters( 'user_registration_logged_in_message', sprintf( __( 'You are already logged in. <a href="%s">Log out?</a>', 'user-registration' ), ur_logout_url() ) ) ); } } }
💾 Save
❌ Cancel