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
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
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.