BBP_User_Query::__construct( null|string|array $query = null )

PHP5 constructor.


Description Description


Parameters Parameters

$query

(Optional) The query variables.

Default value: null


Top ↑

Source Source

File: includes/users/template.php

	public function __construct( $query = null ) {
		if ( ! empty( $query ) ) {
			parent::__construct( $query );
			$this->user_count = count( $this->results );
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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