Changeset 10899 for trunk/src/bp-core/bp-core-filters.php
- Timestamp:
- 06/23/2016 06:31:58 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-filters.php
r10825 r10899 309 309 * @since 1.6.0 310 310 * 311 311 * @param bool $value Whether or not to redirect. 312 312 * @param string $redirect_to Sanitized URL to be redirected to. 313 313 * @param string $redirect_to_raw Unsanitized URL to be redirected to. … … 350 350 * @param string $prop Email property to check against. 351 351 * @param string $transform Either 'raw' or 'replace-tokens'. 352 * @return string $retval Modified email content. 352 353 */ 353 354 function bp_email_plaintext_entity_decode( $retval, $prop, $transform ) { … … 546 547 * @global object $bp BuddyPress global settings. 547 548 * 548 * @param 549 * @param 550 * @param 549 * @param string $title Original page title. 550 * @param string $sep How to separate the various items within the page title. 551 * @param string $seplocation Direction to display title. 551 552 * @return string New page title. 552 553 */ … … 596 597 * Filters the older 'wp_title' page title for BuddyPress pages. 597 598 * 598 * @since 599 * 600 * @param 601 * @param 602 * @param 603 * @param 599 * @since 1.5.0 600 * 601 * @param string $new_title The BuddyPress page title. 602 * @param string $title The original WordPress page title. 603 * @param string $sep The title parts separator. 604 * @param string $seplocation Location of the separator (left or right). 604 605 */ 605 606 return apply_filters( 'bp_modify_page_title', $new_title, $title, $sep, $seplocation ); … … 649 650 * Filters BuddyPress title parts that will be used into the document title. 650 651 * 651 * @since 652 * 653 * @param array $bp_titleThe BuddyPress page title parts.654 * @param array $titleThe original WordPress title parts.652 * @since 2.4.3 653 * 654 * @param array $bp_title The BuddyPress page title parts. 655 * @param array $title The original WordPress title parts. 655 656 */ 656 657 return apply_filters( 'bp_modify_document_title_parts', $bp_title, $title ); … … 750 751 * Populate BuddyPress user nav items for the customizer. 751 752 * 752 * @since 753 * 754 * @param 755 * @param 756 * @param 757 * @param 758 * @return array 753 * @since 2.3.3 754 * 755 * @param array $items The array of menu items. 756 * @param string $type The requested type. 757 * @param string $object The requested object name. 758 * @param integer $page The page num being requested. 759 * @return array The paginated BuddyPress user nav items. 759 760 */ 760 761 function bp_customizer_nav_menus_get_items( $items = array(), $type = '', $object = '', $page = 0 ) { … … 787 788 * Set BuddyPress item navs for the customizer. 788 789 * 789 * @since 790 * 791 * @param 790 * @since 2.3.3 791 * 792 * @param array $item_types An associative array structured for the customizer. 792 793 * @return array $item_types An associative array structured for the customizer. 793 794 */ … … 853 854 * @since 2.1.0 854 855 * 855 * @param 856 * @param 856 * @param string $edit_link The edit link. 857 * @param int $post_id Post ID. 857 858 * @return bool|string Will be a boolean (false) if $post_id is 0. Will be a string (the unchanged edit link) 858 859 * otherwise … … 900 901 * 901 902 * @global array $wp_registered_widgets Current registered widgets. 902 * @param array $params Current sidebar params. 903 * 904 * @param array $params Current sidebar params. 903 905 * @return array 904 906 */ … … 952 954 * @since 2.5.0 953 955 * 954 * @param string $value Property value.955 * @param string $property_name 956 * @param string $transform How the return value was transformed.956 * @param string $value Property value. 957 * @param string $property_name Email template property name. 958 * @param string $transform How the return value was transformed. 957 959 * @return string Updated value. 958 960 */ … … 991 993 * @since 2.5.0 992 994 * 993 * @param array $headers994 * @param string $propertyName of property. Unused.995 * @param string $transform Return value transformation. Unused.996 * @param BP_Email $email Email object reference.995 * @param array $headers Array of email headers. 996 * @param string $property Name of property. Unused. 997 * @param string $transform Return value transformation. Unused. 998 * @param BP_Email $email Email object reference. 997 999 * @return array 998 1000 */ … … 1010 1012 * @since 2.5.0 1011 1013 * 1012 * @param array $tokensEmail tokens.1013 * @param string $property_name Unused.1014 * @param string $transformUnused.1015 * @param BP_Email $email Email being sent.1014 * @param array $tokens Email tokens. 1015 * @param string $property_name Unused. 1016 * @param string $transform Unused. 1017 * @param BP_Email $email Email being sent. 1016 1018 * @return array 1017 1019 */
Note: See TracChangeset
for help on using the changeset viewer.