Skip to:
Content

bbPress.org

Ticket #2090: bp_admin_links.patch

File bp_admin_links.patch, 1.4 KB (added by mordauk, 12 years ago)

Adds filters to the admin links array

  • includes/topics/template-tags.php

     
    21902190                        return;
    21912191
    21922192                if ( empty( $r['links'] ) ) {
    2193                         $r['links'] = array(
     2193                        $r['links'] = apply_filters( 'bbp_topic_admin_links', array(
    21942194                                'edit'  => bbp_get_topic_edit_link ( $r ),
    21952195                                'close' => bbp_get_topic_close_link( $r ),
    21962196                                'stick' => bbp_get_topic_stick_link( $r ),
    21972197                                'merge' => bbp_get_topic_merge_link( $r ),
    21982198                                'trash' => bbp_get_topic_trash_link( $r ),
    21992199                                'spam'  => bbp_get_topic_spam_link ( $r ),
    2200                         );
     2200                        ), $r['id'] );
    22012201                }
    22022202
    22032203                // Check caps for trashing the topic
  • includes/replies/template-tags.php

     
    14561456
    14571457                // If no links were passed, default to the standard
    14581458                if ( empty( $r['links'] ) ) {
    1459                         $r['links'] = array (
     1459                        $r['links'] = apply_filters( 'bbp_reply_admin_links', array(
    14601460                                'edit'  => bbp_get_reply_edit_link ( $r ),
    14611461                                'move'  => bbp_get_reply_move_link ( $r ),
    14621462                                'split' => bbp_get_topic_split_link( $r ),
    14631463                                'trash' => bbp_get_reply_trash_link( $r ),
    14641464                                'spam'  => bbp_get_reply_spam_link ( $r ),
    1465                         );
     1465                        ), $r['id'] );
    14661466                }
    14671467
    14681468                // Check caps for trashing the topic