Changeset 12545
- Timestamp:
- 01/29/2020 09:03:43 PM (5 years ago)
- Location:
- trunk/src/bp-core
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-dependency.php
r11884 r12545 8 8 * 9 9 * We do this in BuddyPress by mirroring existing WordPress hooks in many places 10 * allowing depend ant plugins to hook into the BuddyPress specific ones, thus10 * allowing dependent plugins to hook into the BuddyPress specific ones, thus 11 11 * guaranteeing proper code execution only when BuddyPress is active. 12 12 * -
trunk/src/bp-core/bp-core-filters.php
r12503 r12545 435 435 return $welcome_email; 436 436 437 // [User Set] Replaces $password in welcome email; Represents value set by user 437 // [User Set] Replaces $password in welcome email; Represents value set by user. 438 438 return str_replace( $password, __( '[User Set]', 'buddypress' ), $welcome_email ); 439 439 } … … 812 812 * @since 2.3.3 813 813 * 814 * @param array $item_types An associative array structured for the customizer.814 * @param array $item_types An associative array structured for the customizer. 815 815 * @return array $item_types An associative array structured for the customizer. 816 816 */ -
trunk/src/bp-core/bp-core-functions.php
r12481 r12545 503 503 $page_ids = bp_get_option( 'bp-pages', array() ); 504 504 505 // Loop through pages 505 // Loop through pages. 506 506 foreach ( $page_ids as $component_name => $page_id ) { 507 507 … … 1566 1566 // Setup a default string if none was passed. 1567 1567 $string = empty( $string ) 1568 ? '%s' // Gettext placeholder.1568 ? '%s' // Gettext library's placeholder. 1569 1569 : $string; 1570 1570 … … 2732 2732 * 2733 2733 * @param string $value Custom class to use. Default: none. 2734 * @param array $args Array of arguments for sugg gestions.2734 * @param array $args Array of arguments for suggestions. 2735 2735 */ 2736 2736 $class = apply_filters( 'bp_suggestions_services', '', $args ); … … 3163 3163 * Optional. Array of extra parameters. 3164 3164 * 3165 * @type array $tokens Optional. Assoc ative arrays of string replacements for the email.3165 * @type array $tokens Optional. Associative arrays of string replacements for the email. 3166 3166 * } 3167 3167 */
Note: See TracChangeset
for help on using the changeset viewer.