Changeset 10712
- Timestamp:
- 04/17/2016 12:24:44 AM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-functions.php
r10646 r10712 1064 1064 * @since 1.1.0 1065 1065 * 1066 * @param BP_Activity_Activity $ content_existsID of the activity if found, else null.1066 * @param BP_Activity_Activity $value ID of the activity if found, else null. 1067 1067 */ 1068 1068 return apply_filters( 'bp_activity_check_exists_by_content', BP_Activity_Activity::check_exists_by_content( $content ) ); … … 2305 2305 * @since 2.5.0 2306 2306 * 2307 * @param int $comment_id ID of the comment. 2308 * @param bool $is_approved Whether the comment is approved or not. 2309 * @param object $activity_post_object the post type tracking args object. 2310 * 2307 * @param int $comment_id ID of the comment. 2308 * @param bool $is_approved Whether the comment is approved or not. 2309 * @param object|null $activity_post_object The post type tracking args object. 2311 2310 * @return int|bool The ID of the activity on success. False on error. 2312 2311 */ … … 2498 2497 * @since 2.5.0 2499 2498 * 2500 * @param int $comment_id ID of the comment. 2501 * @param object $activity_post_object The post type tracking args object. 2502 * 2499 * @param int $comment_id ID of the comment. 2500 * @param object|null $activity_post_object The post type tracking args object. 2503 2501 * @return bool True on success. False on error. 2504 2502 */ -
trunk/src/bp-blogs/bp-blogs-functions.php
r10632 r10712 564 564 * @since 2.5.0 565 565 * 566 * @param int|bool $activity_id ID of recorded activity, or false if sync is active.567 * @param WP_Comment $comment The comment object.568 * @param array $activity_args Array of activity arguments.569 * @param object $activity_post_object The post type tracking args object.570 * @return int|bool 566 * @param int|bool $activity_id ID of recorded activity, or false if sync is active. 567 * @param WP_Comment|null $comment The comment object. 568 * @param array $activity_args Array of activity arguments. 569 * @param object|null $activity_post_object The post type tracking args object. 570 * @return int|bool Returns false if no activity, the activity id otherwise. 571 571 */ 572 572 function bp_blogs_comment_sync_activity_comment( &$activity_id, $comment = null, $activity_args = array(), $activity_post_object = null ) { -
trunk/src/bp-blogs/bp-blogs-template.php
r10682 r10712 1142 1142 * @param string $user_email The email of the user who created the blog. Unused. 1143 1143 * @param string|array $meta Meta values associated with the new blog. Unused. 1144 * @param int 1144 * @param int|null $blog_id ID of the newly created blog. 1145 1145 */ 1146 1146 function bp_blogs_confirm_blog_signup( $domain, $path, $blog_title, $user_name, $user_email = '', $meta = '', $blog_id = null ) { -
trunk/src/bp-forums/bp-forums-template.php
r10417 r10712 1815 1815 * 1816 1816 * @todo Deprecate? Seems unused 1817 * 1818 * @return bool|string 1817 1819 */ 1818 1820 function bp_get_forums_tag_name() { -
trunk/src/bp-members/classes/class-bp-members-list-table.php
r10711 r10712 335 335 * @since 2.0.0 336 336 * 337 * @param object $signup_object The signup data object.337 * @param object|null $signup_object The signup data object. 338 338 */ 339 339 public function column_name( $signup_object = null ) { -
trunk/src/bp-xprofile/bp-xprofile-template.php
r10652 r10712 116 116 * @since 1.0.0 117 117 * 118 * @param array|string $class Extra classes to append to class attribute. 119 * Pass mutiple class names as an array or 120 * space-delimited string. 121 * 118 * @param array|string|false $class Extra classes to append to class attribute. 119 * Pass mutiple class names as an array or 120 * space-delimited string. 122 121 * @return string 123 122 */
Note: See TracChangeset
for help on using the changeset viewer.