bbp_update_reply_revision_log( mixed $args = '' )

Update the revision log of the reply

Description

Parameters

$args

(Optional) Supports these args: - reply_id: reply id - author_id: Author id - reason: Reason for editing - revision_id: Revision id

Default value: ''

Return

(mixed) False on failure, true on success

Source

File: bp-forums/replies/functions.php

1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
function bbp_update_reply_revision_log( $args = '' ) {
 
    // Parse arguments against default values
    $r = bbp_parse_args( $args, array(
        'reason'      => '',
        'reply_id'    => 0,
        'author_id'   => 0,
        'revision_id' => 0
    ), 'update_reply_revision_log' );
 
    // Populate the variables
    $r['reason']      = bbp_format_revision_reason( $r['reason'] );
    $r['reply_id']    = bbp_get_reply_id( $r['reply_id'] );
    $r['author_id']   = bbp_get_user_id ( $r['author_id'], false, true );
    $r['revision_id'] = (int) $r['revision_id'];
 
    // Get the logs and append the new one to those
    $revision_log                      = bbp_get_reply_raw_revision_log( $r['reply_id'] );
    $revision_log[ $r['revision_id'] ] = array( 'author' => $r['author_id'], 'reason' => $r['reason'] );
 
    // Finally, update
    update_post_meta( $r['reply_id'], '_bbp_revision_log', $revision_log );
 
    return apply_filters( 'bbp_update_reply_revision_log', $revision_log, $r['reply_id'] );
}

Changelog

Changelog
Version Description
bbPress (r2782) 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.