Function __global->fill_in_missing_privacy_criteria

Definitions

sources/privacy.php

  • Fill in missing criteria from the criteria that was provided.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
&$username ID_TEXT Yes No required parameter N/A N/A The username from the search criteria (passed by reference) (blank: no username specified)
&$ip_addresses array Yes No required parameter N/A N/A The IP addresses from the search criteria (passed by reference)
&$member_id ?MEMBER Yes No required parameter N/A N/A The member ID of the search criteria (passed by reference) (null: no member specified)
&$email_address string Yes No required parameter N/A N/A The e-mail address from the search criteria (passed by reference) (blank: no e-mail address specified)

Preview

Code (PHP)

/**
 * Fill in missing criteria from the criteria that was provided.
 *
 * @param  ID_TEXT $username The username from the search criteria (passed by reference) (blank: no username specified)
 * @param  array $ip_addresses The IP addresses from the search criteria (passed by reference)
 * @param  ?MEMBER $member_id The member ID of the search criteria (passed by reference) (null: no member specified)
 * @param  string $email_address The e-mail address from the search criteria (passed by reference) (blank: no e-mail address specified)
 */

function fill_in_missing_privacy_criteria(string &$username, array &$ip_addresses, ?int &$member_id, string &$email_address)