BP_Messages_Notices_List_Table

Description

Source

File: bp-messages/classes/class-bp-messages-notices-list-table.php

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
class BP_Messages_Notices_List_Table extends WP_List_Table {
     
    /**
     * Constructor
     *
     * @since BuddyPress 3.0.0
     */
    public function __construct( $args = array() ) {
        parent::__construct(
            array(
                'plural'   => 'notices',
                'singular' => 'notice',
                'ajax'     => true,
                'screen'   => isset( $args['screen'] ) ? $args['screen'] : null,
            )
        );
    }
 
    /**
     * Checks the current user's permissions
     *
     * @since BuddyPress 3.0.0
     */
    public function ajax_user_can() {
        return bp_current_user_can( 'bp_moderate' );
    }
 
    /**
     * Set up items for display in the list table.
     *
     * Handles filtering of data, sorting, pagination, and any other data
     * manipulation required prior to rendering.
     *
     * @since BuddyPress 3.0.0
     */
    public function prepare_items() {
        $page     = $this->get_pagenum();
        $per_page = $this->get_items_per_page( 'bp_notices_per_page' );
 
        $this->items = BP_Messages_Notice::get_notices( array(
            'pag_num'  => $per_page,
            'pag_page' => $page
        ) );
 
        $this->set_pagination_args( array(
            'total_items' => BP_Messages_Notice::get_total_notice_count(),
            'per_page' => $per_page,
        ) );
    }
 
    /**
     * Get a list of columns. The format is:
     * 'internal-name' => 'Title'
     *
     * @since BuddyPress 3.0.0
     *
     * @return array
     */
    public function get_columns() {
        return apply_filters( 'bp_notices_list_table_get_columns', array(
            'subject'   => __( 'Subject', 'buddyboss' ),
            'message'   => __( 'Content', 'buddyboss' ),
            'date_sent' => __( 'Created', 'buddyboss' ),
        ) );
    }
 
    /**
     * Generates content for a single row of the table
     *
     * @since BuddyPress 3.0.0
     *
     * @param object $item The current item
     */
    public function single_row( $item ) {
        $class = '';
 
        if ( ! empty( $item->is_active ) ) {
            $class = ' class="notice-active"';
        }
 
        echo "<tr{$class}>";
        $this->single_row_columns( $item );
        echo '</tr>';
    }
 
    /**
     * Generates content for the "subject" column.
     *
     * @since BuddyPress 3.0.0
     *
     * @param object $item The current item
     */
    public function column_subject( $item ) {
        $actions = array(
            'activate_deactivate' => sprintf( '<a href="%s" data-bp-notice-id="%d" data-bp-action="activate">%s</a>',
                esc_url( wp_nonce_url( add_query_arg( array(
                    'page'          => 'bp-notices',
                    'notice_action' => 'activate',
                    'notice_id'     => $item->id
                ), bp_get_admin_url( 'admin.php' ) ), 'messages-activate-notice-' . $item->id ) ),
                (int) $item->id,
                esc_html__( 'Activate Notice', 'buddyboss' ) ),
            'delete' => sprintf( '<a href="%s" data-bp-notice-id="%d" data-bp-action="delete">%s</a>',
                esc_url( wp_nonce_url( add_query_arg( array(
                    'page'          => 'bp-notices',
                    'notice_action' => 'delete',
                    'notice_id'     => $item->id
                ), bp_get_admin_url( 'admin.php' ) ), 'messages-delete-notice-' . $item->id ) ),
                (int) $item->id,
                esc_html__( 'Delete Notice', 'buddyboss' ) )
        );
 
        if ( ! empty( $item->is_active ) ) {
            $item->subject = sprintf( _x( 'Active: %s', 'Tag prepended to active site-wide notice titles on WP Admin notices list table', 'buddyboss' ), $item->subject );
            $actions['activate_deactivate'] = sprintf( '<a href="%s" data-bp-notice-id="%d" data-bp-action="deactivate">%s</a>',
                esc_url( wp_nonce_url( add_query_arg( array(
                    'page'          => 'bp-notices',
                    'notice_action' => 'deactivate',
                    'notice_id'     => $item->id
                ), bp_get_admin_url( 'admin.php' ) ), 'messages-deactivate-notice-' . $item->id ) ),
                (int) $item->id,
                esc_html__( 'Deactivate Notice', 'buddyboss' ) );
        }
 
        echo '<strong>' . apply_filters( 'bp_get_message_notice_subject', $item->subject ) . '</strong> ' . $this->row_actions( $actions );
    }
 
    /**
     * Generates content for the "message" column.
     *
     * @since BuddyPress 3.0.0
     *
     * @param object $item The current item
     */
    public function column_message( $item ) {
        echo apply_filters( 'bp_get_message_notice_text', $item->message );
    }
 
    /**
     * Generates content for the "date_sent" column.
     *
     * @since BuddyPress 3.0.0
     *
     * @param object $item The current item
     */
    public function column_date_sent( $item ) {
        echo apply_filters( 'bp_get_message_notice_post_date', bp_format_time( strtotime( $item->date_sent ) ) );
    }
}

Methods

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.