BP_Core_Whos_Online_Widget::form( array $instance )

Output the Who’s Online widget options form.

Description

Parameters

$instance

(Required) Widget instance settings.

Return

(void)

Source

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

228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
public function form( $instance ) {
 
    // Get widget settings.
    $settings    = $this->parse_settings( $instance );
    $title       = strip_tags( $settings['title'] );
    $max_members = strip_tags( $settings['max_members'] ); ?>
 
    <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( '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>
 
<?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.