BP_Members_List_Table::column_cb( object|null $signup_object = null )

Markup for the checkbox used to select items for bulk actions.


Description Description


Parameters Parameters

$signup_object

(Optional) The signup data object.

Default value: null


Top ↑

Source Source

File: bp-members/classes/class-bp-members-list-table.php

	public function column_cb( $signup_object = null ) {
	?>
		<label class="screen-reader-text" for="signup_<?php echo intval( $signup_object->id ); ?>"><?php
			/* translators: accessibility text */
			printf( esc_html__( 'Select user: %s', 'buddypress' ), $signup_object->user_login );
		?></label>
		<input type="checkbox" id="signup_<?php echo intval( $signup_object->id ) ?>" name="allsignups[]" value="<?php echo esc_attr( $signup_object->id ) ?>" />
		<?php
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.