bbp_toggle_reply_admin

bbp_toggle_reply_admin

Hook Type: action

See hook in core

Displaying hooks found in version: bbpress.2.6.9

do_action('bbp_toggle_reply_admin') is found 1 times:

  • /includes/admin/replies.php line 515
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
        // Filter all message args
        $retval = apply_filters( 'bbp_toggle_reply_action_admin', $retval, $reply_id, $action );
     
        // Do additional reply toggle actions (admin side)
        do_action( 'bbp_toggle_reply_admin', $success, $post_data, $action, $retval );
     
        // Redirect back to the reply
        $redirect = add_query_arg( $retval, remove_query_arg( array( 'action', 'reply_id' ) ) );
        bbp_redirect( $redirect );
    }