$user, 'choice' => $choice ) ); } return false; } public static function get_user_login_choice() { return get_option( '_templately_user_login_choice', array () ); } public static function user_can_logout( $user = null ) { $userdata = self::get_user_login_choice(); if( ! empty( $userdata ) ) { if( isset( $userdata['choice'] ) ) { return isset( $userdata['id'] ) ? $userdata['id'] === get_current_user_id() : false; } } return false; } public static function already_signedin_globally() { $userdata = self::get_user_login_choice(); return isset( $userdata['choice'] ) && \boolval( $userdata['choice'] ); } public static function get_global_signed_in_by_user( $user_id = null ) { if( is_null( $user_id ) ) { return false; } $userdata = self::get_user_login_choice(); return isset( $userdata['id'] ) && $userdata['id'] == $user_id; } public static function set_link_my_account() { return update_user_meta( get_current_user_id(), '_templately_link_my_account', true ); } public static function get_link_my_account() { $user_meta = get_user_meta( get_current_user_id(), '_templately_link_my_account', true ); return ! empty( $user_meta ) ? $user_meta : false; } public static function delete_link_my_account() { return delete_user_meta( get_current_user_id(), '_templately_link_my_account' ); } }