bbp_get_reply_trash_link( mixed $args = '' )

Return the trash link of the reply

Description

Parameters

$args

(Optional) This function supports these arguments: - id: Reply id - link_before: HTML before the link - link_after: HTML after the link - sep: Separator - trash_text: Trash text - restore_text: Restore text - delete_text: Delete text

Default value: ''

Return

(string) Reply trash link

Source

File: bp-forums/replies/template.php

2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
function bbp_get_reply_trash_link( $args = '' ) {
 
    // Parse arguments against default values
    $r = bbp_parse_args( $args, array(
        'id'           => 0,
        'link_before'  => '',
        'link_after'   => '',
        'sep'          => ' | ',
        'trash_text'   => esc_html__( 'Trash',   'buddyboss' ),
        'restore_text' => esc_html__( 'Restore', 'buddyboss' ),
        'delete_text'  => esc_html__( 'Delete''buddyboss' )
    ), 'get_reply_trash_link' );
 
    $actions = array();
    $reply   = bbp_get_reply( bbp_get_reply_id( (int) $r['id'] ) );
 
    if ( empty( $reply ) || !current_user_can( 'delete_reply', $reply->ID ) ) {
        return;
    }
 
    if ( bbp_is_reply_trash( $reply->ID ) ) {
        $actions['untrash'] = '<a title="' . esc_attr__( 'Restore this item from the Trash', 'buddyboss' ) . '" href="' . esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'bbp_toggle_reply_trash', 'sub_action' => 'untrash', 'reply_id' => $reply->ID ) ), 'untrash-' . $reply->post_type . '_' . $reply->ID ) ) . '" class="bbp-reply-restore-link">' . $r['restore_text'] . '</a>';
    } elseif ( EMPTY_TRASH_DAYS ) {
        $actions['trash']   = '<a title="' . esc_attr__( 'Move this item to the Trash',      'buddyboss' ) . '" href="' . esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'bbp_toggle_reply_trash', 'sub_action' => 'trash',   'reply_id' => $reply->ID ) ), 'trash-'   . $reply->post_type . '_' . $reply->ID ) ) . '" class="bbp-reply-trash-link">'   . $r['trash_text']   . '</a>';
    }
 
    if ( bbp_is_reply_trash( $reply->ID ) || !EMPTY_TRASH_DAYS ) {
        $actions['delete']  = '<a title="' . esc_attr__( 'Delete this item permanently',     'buddyboss' ) . '" href="' . esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'bbp_toggle_reply_trash', 'sub_action' => 'delete''reply_id' => $reply->ID ) ), 'delete-'  . $reply->post_type . '_' . $reply->ID ) ) . '" onclick="return confirm(\'' . esc_js( __( 'Are you sure you want to delete that permanently?', 'buddyboss' ) ) . '\' );" class="bbp-reply-delete-link">' . $r['delete_text'] . '</a>';
    }
 
    // Process the admin links
    $retval = $r['link_before'] . implode( $r['sep'], $actions ) . $r['link_after'];
 
    return apply_filters( 'bbp_get_reply_trash_link', $retval, $r );
}

Changelog

Changelog
Version Description
bbPress (r2740) Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.