HME Development Sdn. Bhd.
+60 16-833 3317
Address: 1st Floor, Mile, 1-1-1 Lrg. Juta 1, Plaza Juta, 4, Jalan Tuaran, 88400 Kota Kinabalu, Sabah, Malaysia
/** * Handle approve user action */ public function handle_approve_user() { if ( ! current_user_can( 'edit_users' ) ) { wp_die( __( 'Unauthorized', 'houzez-login-register' ) ); } $user_id = intval( $_GET['user_id'] ); if ( ! $user_id || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'houzez-approve-user_' . $user_id ) ) { wp_die( __( 'Invalid request', 'houzez-login-register' ) ); } // Approve user update_user_meta( $user_id, 'houzez_account_approved', 1 ); update_user_meta( $user_id, 'houzez_approval_method', 'admin_approved' ); // Publish agent/agency post if exists $this->publish_user_associated_posts( $user_id ); // Get user data $u = get_userdata( $user_id ); // ✉️ Custom email subject and body $subject = __( '🎉 Good News! Your Account Has Been Approved', 'houzez-login-register' ); $body = sprintf( __( "Hello %s,\n\nGood news! Your account on Units for Rent (**BilikKu.my**) has just been approved.\n\nYou can now log in here:\n%s\n\nPlease post your first listing within **3 days** to stay active.\n\n⚠️ Accounts with no listings found after 3 days will be automatically suspended.\n\nComplete your listing and profile details to gain tenant confidence and rent out faster.\n\nThank you for joining BilikKu.my!", 'houzez-login-register' ), $u->first_name ?: $u->user_login, home_url('/') ); // Trigger notification hook $notificationArgs = array( 'title' => $subject, 'message' => $body, 'type' => 'user_approved', 'to' => $u->user_email, 'user_id' => $user_id, 'user_login' => $u->user_login, 'user_email' => $u->user_email, 'admin_user' => wp_get_current_user()->user_login, ); do_action( 'houzez_send_notification', $notificationArgs ); // Send email wp_mail( $u->user_email, $subject, $body ); // Redirect $redirect_url = remove_query_arg( array( 'houzez_user_approved', 'houzez_user_declined' ), wp_get_referer() ); wp_redirect( add_query_arg( 'houzez_user_approved', '1', $redirect_url ) ); exit; }
HME Development Sdn. Bhd.
+60 16-833 3317
Address: 1st Floor, Mile, 1-1-1 Lrg. Juta 1, Plaza Juta, 4, Jalan Tuaran, 88400 Kota Kinabalu, Sabah, Malaysia
Compare listings
Compare