BP_Core_Members_Widget::form( array $instance )

Output the Members widget options form.

Description

Parameters

$instance

(Required) Widget instance settings.

Return

(void)

Source

File: bp-members/classes/class-bp-core-members-widget.php

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
268
269
270
271
272
273
274
275
276
277
278
279
280
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
}

Changelog

Changelog
Version Description
BuddyPress 1.0.3 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.