Changeset 53877 for trunk/src/wp-includes/user.php
- Timestamp:
- 08/11/2022 02:01:35 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/user.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r53818 r53877 1214 1214 * @since 5.1.0 1215 1215 * 1216 * @param null| string$result The value to return instead. Default null to continue with the query.1217 * @param string $strategy Optional. The computational strategy to use when counting the users.1218 * Accepts either 'time' or 'memory'. Default 'time'.1219 * @param int |null $site_id Optional. The site ID to count users for. Defaults to the current site.1216 * @param null|array $result The value to return instead. Default null to continue with the query. 1217 * @param string $strategy Optional. The computational strategy to use when counting the users. 1218 * Accepts either 'time' or 'memory'. Default 'time'. 1219 * @param int $site_id The site ID to count users for. 1220 1220 */ 1221 1221 $pre = apply_filters( 'pre_count_users', null, $strategy, $site_id ); … … 3744 3744 * @access private 3745 3745 * 3746 * @return arrayList of core privacy action types.3746 * @return string[] List of core privacy action types. 3747 3747 */ 3748 3748 function _wp_privacy_action_request_types() { … … 3758 3758 * @since 4.9.6 3759 3759 * 3760 * @param array $exportersAn array of personal data exporters.3761 * @return array An array of personal data exporters.3760 * @param array[] $exporters An array of personal data exporters. 3761 * @return array[] An array of personal data exporters. 3762 3762 */ 3763 3763 function wp_register_user_personal_data_exporter( $exporters ) {
Note: See TracChangeset
for help on using the changeset viewer.