BP_Core_Members_Widget

Members Widget.

Description

Source

File: bp-members/classes/class-bp-core-members-widget.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
class BP_Core_Members_Widget extends WP_Widget {
 
    /**
     * Constructor method.
     *
     * @since BuddyPress 1.5.0
     */
    public function __construct() {
 
        // Setup widget name & description.
        $name        = __( '(BB) Members', 'buddyboss' );
        $description = __( 'A dynamic list of recently active, popular, and newest members', 'buddyboss' );
 
        // Call WP_Widget constructor.
        parent::__construct( false, $name, array(
            'description'                 => $description,
            'classname'                   => 'widget_bp_core_members_widget buddypress widget',
            'customize_selective_refresh' => true,
        ) );
 
        if ( is_customize_preview() || is_active_widget( false, false, $this->id_base ) ) {
            add_action( 'bp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
        }
    }
 
    /**
     * Enqueue scripts.
     *
     * @since BuddyPress 2.6.0
     */
    public function enqueue_scripts() {
        wp_enqueue_script( 'bp-widget-members' );
    }
 
    /**
     * Display the Members widget.
     *
     * @since BuddyPress 1.0.3
     *
     * @see WP_Widget::widget() for description of parameters.
     *
     * @param array $args     Widget arguments.
     * @param array $instance Widget settings, as saved by the user.
     */
    public function widget( $args, $instance ) {
        global $members_template;
 
        // Get widget settings.
        $settings = $this->parse_settings( $instance );
 
        /**
         * Filters the title of the Members widget.
         *
         * @since BuddyPress 1.8.0
         * @since BuddyPress 2.3.0 Added 'instance' and 'id_base' to arguments passed to filter.
         *
         * @param string $title    The widget title.
         * @param array  $settings The settings for the particular instance of the widget.
         * @param string $id_base  Root ID for all widgets of this type.
         */
        $title = apply_filters( 'widget_title', $settings['title'], $settings, $this->id_base );
        $title = $settings['link_title'] ? '<a href="' . bp_get_members_directory_permalink() . '">' . $title . '</a>' : $title;
 
        /**
         * Filters the separator of the member widget links.
         *
         * @since BuddyPress 2.4.0
         *
         * @param string $separator Separator string. Default '|'.
         */
        $separator = apply_filters( 'bp_members_widget_separator', '|' );
 
        // Output before widget HTMl, title (and maybe content before & after it).
        echo $args['before_widget'] . $args['before_title'] . $title . $args['after_title'];
 
        // Setup args for querying members.
        $members_args = array(
            'user_id'         => 0,
            'type'            => $settings['member_default'],
            'per_page'        => $settings['max_members'],
            'max'             => $settings['max_members'],
            'populate_extras' => true,
            'search_terms'    => false,
        );
         
        if ( empty($members_args['max']) ) {
            $members_args['max'] = 5;
        }
 
        // Back up the global.
        $old_members_template = $members_template;
 
        ?>
 
        <?php if ( bp_has_members( $members_args ) ) : ?>
 
            <div class="item-options" id="members-list-options">
                <a href="<?php bp_members_directory_permalink(); ?>" id="newest-members" <?php if ( 'newest' === $settings['member_default'] ) : ?>class="selected"<?php endif; ?>><?php esc_html_e( 'Newest', 'buddyboss' ); ?></a>
                <span class="bp-separator" role="separator"><?php echo esc_html( $separator ); ?></span>
                <a href="<?php bp_members_directory_permalink(); ?>" id="recently-active-members" <?php if ( 'active' === $settings['member_default'] ) : ?>class="selected"<?php endif; ?>><?php esc_html_e( 'Active', 'buddyboss' ); ?></a>
 
                <?php if ( bp_is_active( 'friends' ) ) : ?>
                    <span class="bp-separator" role="separator"><?php echo esc_html( $separator ); ?></span>
                    <a href="<?php bp_members_directory_permalink(); ?>" id="popular-members" <?php if ( 'popular' === $settings['member_default'] ) : ?>class="selected"<?php endif; ?>><?php esc_html_e( 'Popular', 'buddyboss' ); ?></a>
 
                <?php endif; ?>
 
            </div>
 
            <ul id="members-list" class="item-list" aria-live="polite" aria-relevant="all" aria-atomic="true">
 
                <?php while ( bp_members() ) : bp_the_member(); ?>
 
                    <li class="vcard">
                        <div class="item-avatar">
                            <a href="<?php bp_member_permalink() ?>">
                                <?php bp_member_avatar(); ?>
                                <?php
                                $current_time = current_time( 'mysql', 1 );
                                $diff strtotime( $current_time ) - strtotime( $members_template->member->last_activity );
                                if ( $diff < 300 ) { // 5 minutes  =  5 * 60 ?>
                                    <span class="member-status online"></span>
                                <?php } ?>
                            </a>
                        </div>
 
                        <div class="item">
                            <div class="item-title fn"><a href="<?php bp_member_permalink(); ?>"><?php bp_member_name(); ?></a></div>
                            <div class="item-meta">
                                <?php if ( 'newest' == $settings['member_default'] ) : ?>
                                    <span class="activity" data-livestamp="<?php bp_core_iso8601_date( bp_get_member_registered( array( 'relative' => false ) ) ); ?>"><?php bp_member_registered(); ?></span>
                                <?php elseif ( 'active' == $settings['member_default'] ) : ?>
                                    <span class="activity" data-livestamp="<?php bp_core_iso8601_date( bp_get_member_last_active( array( 'relative' => false ) ) ); ?>"><?php bp_member_last_active(); ?></span>
                                <?php else : ?>
                                    <span class="activity"><?php bp_member_total_friend_count(); ?></span>
                                <?php endif; ?>
                            </div>
                        </div>
                    </li>
 
                <?php endwhile; ?>
 
            </ul>
 
            <?php wp_nonce_field( 'bp_core_widget_members', '_wpnonce-members', false ); ?>
 
            <input type="hidden" name="members_widget_max" id="members_widget_max" value="<?php echo esc_attr( $settings['max_members'] ); ?>" />
             
            <div class="more-block"><a href="<?php bp_members_directory_permalink(); ?>" class="count-more">More<i class="bb-icon-angle-right"></i></a></div>
 
        <?php else: ?>
 
            <div class="widget-error">
                <?php esc_html_e( 'No one has signed up yet!', 'buddyboss' ); ?>
            </div>
 
        <?php endif; ?>
 
        <?php echo $args['after_widget'];
 
        // Restore the global.
        $members_template = $old_members_template;
    }
 
    /**
     * Update the Members widget options.
     *
     * @since BuddyPress 1.0.3
     *
     * @param array $new_instance The new instance options.
     * @param array $old_instance The old instance options.
     * @return array $instance The parsed options to be saved.
     */
    public function update( $new_instance, $old_instance ) {
        $instance = $old_instance;
 
        $instance['title']          = strip_tags( $new_instance['title'] );
        $instance['max_members']    = strip_tags( $new_instance['max_members'] );
        $instance['member_default'] = strip_tags( $new_instance['member_default'] );
        $instance['link_title']     = (bool) $new_instance['link_title'];
 
        return $instance;
    }
 
    /**
     * Output the Members widget options form.
     *
     * @since BuddyPress 1.0.3
     *
     * @param array $instance Widget instance settings.
     * @return void
     */
    public function form( $instance ) {
 
        // Get widget settings.
        $settings       = $this->parse_settings( $instance );
        $title          = strip_tags( $settings['title'] );
        $max_members    = strip_tags( $settings['max_members'] );
        $member_default = strip_tags( $settings['member_default'] );
        $link_title     = (bool) $settings['link_title']; ?>
 
        <p>
            <label for="<?php echo $this->get_field_id( 'title' ); ?>">
                <?php esc_html_e( 'Title:', 'buddyboss' ); ?>
                <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" style="width: 100%" />
            </label>
        </p>
 
        <p>
            <label for="<?php echo $this->get_field_id( 'link_title' ) ?>">
                <input type="checkbox" name="<?php echo $this->get_field_name( 'link_title' ) ?>" id="<?php echo $this->get_field_id( 'link_title' ) ?>" value="1" <?php checked( $link_title ) ?> />
                <?php esc_html_e( 'Link widget title to Members directory', 'buddyboss' ); ?>
            </label>
        </p>
 
        <p>
            <label for="<?php echo $this->get_field_id( 'max_members' ); ?>">
                <?php esc_html_e( 'Max members to show:', 'buddyboss' ); ?>
                <input class="widefat" id="<?php echo $this->get_field_id( 'max_members' ); ?>" name="<?php echo $this->get_field_name( 'max_members' ); ?>" type="text" value="<?php echo esc_attr( $max_members ); ?>" style="width: 30%" />
            </label>
        </p>
 
        <p>
            <label for="<?php echo $this->get_field_id( 'member_default' ) ?>"><?php esc_html_e( 'Default members to show:', 'buddyboss' ); ?></label>
            <select name="<?php echo $this->get_field_name( 'member_default' ) ?>" id="<?php echo $this->get_field_id( 'member_default' ) ?>">
                <option value="newest"  <?php if ( 'newest'  === $member_default ) : ?>selected="selected"<?php endif; ?>><?php esc_html_e( 'Newest''buddyboss' ); ?></option>
                <option value="active"  <?php if ( 'active'  === $member_default ) : ?>selected="selected"<?php endif; ?>><?php esc_html_e( 'Active''buddyboss' ); ?></option>
                <option value="popular" <?php if ( 'popular' === $member_default ) : ?>selected="selected"<?php endif; ?>><?php esc_html_e( 'Popular', 'buddyboss' ); ?></option>
            </select>
        </p>
 
    <?php
    }
 
    /**
     * Merge the widget settings into defaults array.
     *
     * @since BuddyPress 2.3.0
     *
     * @param array $instance Widget instance settings.
     * @return array
     */
    public function parse_settings( $instance = array() ) {
        return bp_parse_args( $instance, array(
            'title'          => __( 'Members', 'buddyboss' ),
            'max_members'    => 5,
            'member_default' => 'active',
            'link_title'     => false
        ), 'members_widget_settings' );
    }
}

Changelog

Changelog
Version Description
BuddyPress 1.0.3 Introduced.

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.