Changeset 6259 for trunk/bp-groups/bp-groups-forums.php
- Timestamp:
- 08/18/2012 10:15:09 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-groups/bp-groups-forums.php
r6240 r6259 24 24 * @param string $group_description The group description 25 25 * 26 * @since 1.026 * @since BuddyPress (1.0) 27 27 */ 28 28 function groups_new_group_forum( $group_id = 0, $group_name = '', $group_desc = '' ) { … … 53 53 * @param int $group_id Group id, passed from groups_details_updated 54 54 * 55 * @since 1.155 * @since BuddyPress (1.1) 56 56 */ 57 57 function groups_update_group_forum( $group_id ) { … … 90 90 * @return mixed The new forum post ID on success. Boolean false on failure. 91 91 * 92 * @since 1.092 * @since BuddyPress (1.0) 93 93 */ 94 94 function groups_new_group_forum_post( $post_text, $topic_id, $page = false ) { … … 138 138 * @return mixed The new topic object on success. Boolean false on failure. 139 139 * 140 * @since 1.0140 * @since BuddyPress (1.0) 141 141 */ 142 142 function groups_new_group_forum_topic( $topic_title, $topic_text, $topic_tags, $forum_id ) { … … 184 184 * @return mixed The topic object on success. Boolean false on failure. 185 185 * 186 * @since 1.1186 * @since BuddyPress (1.1) 187 187 */ 188 188 function groups_update_group_forum_topic( $topic_id, $topic_title, $topic_text, $topic_tags = false ) { … … 239 239 * @return mixed The forum post ID on success. Boolean false on failure. 240 240 * 241 * @since 1.1241 * @since BuddyPress (1.1) 242 242 */ 243 243 function groups_update_group_forum_post( $post_id, $post_text, $topic_id, $page = false ) { … … 303 303 * @return bool True if the delete routine went through properly 304 304 * 305 * @since 1.1305 * @since BuddyPress (1.1) 306 306 */ 307 307 function groups_delete_group_forum_topic( $topic_id ) { … … 355 355 * @return bool True on success. 356 356 * 357 * @since 1.1357 * @since BuddyPress (1.1) 358 358 */ 359 359 function groups_delete_group_forum_post( $post_id, $topic_id = false ) { … … 384 384 * 385 385 * @package BuddyPress 386 * @since 1.5386 * @since BuddyPress (1.5) 387 387 * 388 388 * @param string $type Either 'newest', 'popular', 'unreplied', 'tags'. Defaults to 'newest'. … … 397 397 * 398 398 * @package BuddyPress 399 * @since 1.5399 * @since BuddyPress (1.5) 400 400 * 401 401 * @param str $status 'public', 'private', 'hidden', 'all' Which group types to count
Note: See TracChangeset
for help on using the changeset viewer.