Changeset 12481
- Timestamp:
- 10/24/2019 01:17:50 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-functions.php
r12434 r12481 17 17 * 18 18 * @since 1.6.0 19 *20 19 */ 21 20 function bp_version() { … … 37 36 * 38 37 * @since 1.6.0 39 *40 38 */ 41 39 function bp_db_version() { … … 57 55 * 58 56 * @since 1.6.0 59 *60 57 */ 61 58 function bp_db_version_raw() { … … 237 234 * @since 1.6.0 238 235 * 239 * @param array $old_args_keys Old argument index s, keyed to their positions.236 * @param array $old_args_keys Old argument indexes, keyed to their positions. 240 237 * @param array $func_args The parameters passed to the originating function. 241 238 * @return array $new_args The parsed arguments. … … 322 319 * Sanitizes a pagination argument based on both the request override and the 323 320 * original value submitted via a query argument, likely to a template class 324 * responsible for limiting the result set of a template loop.321 * responsible for limiting the result set of a template loop. 325 322 * 326 323 * @since 2.2.0 … … 1423 1420 * 1424 1421 * @since 1.1.0 1425 *1426 1422 */ 1427 1423 function bp_core_setup_message() { … … 1507 1503 * @since 1.0.0 1508 1504 * 1509 * usermeta table.1510 *1511 1505 * @return false|null Returns false if there is nothing to do. 1512 1506 */ … … 1564 1558 * @since 1.0.0 1565 1559 * 1566 * representation of the time elapsed.1567 *1568 1560 * @param int|string $last_activity_date The date of last activity. 1569 1561 * @param string $string A sprintf()-able statement of the form 'active %s'. … … 1599 1591 * Get the meta_key for a given piece of user metadata 1600 1592 * 1601 * BuddyPress stores a number of pieces of user data in the WordPress central1593 * BuddyPress stores a number of pieces of user data in the WordPress central 1602 1594 * usermeta table. In order to allow plugins to enable multiple instances of 1603 1595 * BuddyPress on a single WP installation, BP's usermeta keys are filtered … … 3111 3103 * @param string $email_type Type of email being sent. 3112 3104 * @param string|array|int|WP_User $to Either a email address, user ID, WP_User object, 3113 * or an array contain g the address and name.3105 * or an array containing the address and name. 3114 3106 * @param array $args { 3115 3107 * Optional. Array of extra parameters. 3116 3108 * 3117 * @type array $tokens Optional. Assoc ative arrays of string replacements for the email.3109 * @type array $tokens Optional. Associative arrays of string replacements for the email. 3118 3110 * } 3119 3111 * @return bool|WP_Error True if the email was sent successfully. Otherwise, a WP_Error object … … 3167 3159 * @param string $email_type Type of email being sent. 3168 3160 * @param string|array|int|WP_User $to Either a email address, user ID, WP_User object, 3169 * or an array contain g the address and name.3161 * or an array containing the address and name. 3170 3162 * @param array $args { 3171 3163 * Optional. Array of extra parameters. … … 3221 3213 * Optional. Array of extra parameters. 3222 3214 * 3223 * @type array $tokens Optional. Assoc ative arrays of string replacements for the email.3215 * @type array $tokens Optional. Associative arrays of string replacements for the email. 3224 3216 * } 3225 3217 */ … … 3248 3240 3249 3241 /** 3250 * Fires after BuddyPress has succes fully sent an email.3242 * Fires after BuddyPress has successfully sent an email. 3251 3243 * 3252 3244 * @since 2.5.0
Note: See TracChangeset
for help on using the changeset viewer.