BP_Members_List_Table::single_row( object|null $signup_object = null, string $style = '', string $role = '', int $numposts )

Display a signup row.


Description Description

See also See also


Top ↑

Parameters Parameters

$signup_object

(Optional) Signup user object.

Default value: null

$style

(Optional) Styles for the row.

Default value: ''

$role

(Optional) Role to be assigned to user.

Default value: ''

$numposts

(Required) Numper of posts.


Top ↑

Return Return

(void)


Top ↑

Source Source

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

	public function single_row( $signup_object = null, $style = '', $role = '', $numposts = 0 ) {
		echo '<tr' . $style . ' id="signup-' . esc_attr( $signup_object->id ) . '">';
		echo $this->single_row_columns( $signup_object );
		echo '</tr>';
	}

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.