Changeset 7228 for trunk/bp-groups/bp-groups-template.php
- Timestamp:
- 06/19/2013 09:41:08 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-groups/bp-groups-template.php
r7141 r7228 812 812 * @since BuddyPress (1.5) 813 813 * 814 * @param obj$group (optional) The group being queried. Defaults to the current group in the loop815 * @param str $format 'string' to get a comma-separated string, 'array' to get an array814 * @param BP_Groups_Group $group (optional) The group being queried. Defaults to the current group in the loop 815 * @param string $format 'string' to get a comma-separated string, 'array' to get an array 816 816 * @return mixed $admin_ids A string or array of user_ids 817 817 */ … … 842 842 * @since BuddyPress (1.5) 843 843 * 844 * @param obj$group (optional) The group being queried. Defaults to the current group in the loop845 * @param str $format 'string' to get a comma-separated string, 'array' to get an array844 * @param BP_Groups_Group $group (optional) The group being queried. Defaults to the current group in the loop 845 * @param string $format 'string' to get a comma-separated string, 'array' to get an array 846 846 * @return mixed $mod_ids A string or array of user_ids 847 847 */ … … 1082 1082 * @since BuddyPress (1.5) 1083 1083 * 1084 * @param str $setting The setting you want to check against ('members', 'mods', or 'admins')1085 * @param obj$group (optional) The group whose status you want to check1084 * @param string $setting The setting you want to check against ('members', 'mods', or 'admins') 1085 * @param BP_Groups_Group $group (optional) The group whose status you want to check 1086 1086 */ 1087 1087 function bp_group_show_invite_status_setting( $setting, $group = false ) { … … 1673 1673 * @since BuddyPress (1.2.7) 1674 1674 * 1675 * @param obj|bool $group The BP Groups_Group object if passed, boolean false if not passed.1675 * @param BP_Groups_Group|bool $group The BP Groups_Group object if passed, boolean false if not passed. 1676 1676 * @uses bp_get_group_new_topic_button() Returns the 'New Topic' button 1677 1677 */ … … 1684 1684 * @since BuddyPress (1.2.7) 1685 1685 * 1686 * @param obj|bool $group The BP Groups_Group object if passed, boolean false if not passed.1686 * @param BP_Groups_Group|bool $group The BP Groups_Group object if passed, boolean false if not passed. 1687 1687 * @uses is_user_logged_in() Is there a user logged in? 1688 1688 * @uses bp_group_is_user_banned() Is the current user banned from the current group? … … 1690 1690 * @uses bp_is_group_forum_topic() Are we on a group topic page? 1691 1691 * @uses bp_get_button() Renders a button 1692 * @return HTML code for the button1692 * @return string HTML code for the button 1693 1693 */ 1694 1694 function bp_get_group_new_topic_button( $group = false ) { … … 2417 2417 * 2418 2418 * @uses apply_filters() Filter bp_get_groups_current_create_step to modify 2419 * @return str $current_create_step2419 * @return string $current_create_step 2420 2420 */ 2421 2421 function bp_get_groups_current_create_step() { … … 2583 2583 * 2584 2584 * @uses apply_filters() Filter bp_get_current_group_admin_tab to modify return value 2585 * @return str $tab The current tab's slug2585 * @return string $tab The current tab's slug 2586 2586 */ 2587 2587 function bp_get_group_current_admin_tab() { … … 3041 3041 * @uses apply_filters() Filter bp_get_current_group_slug to modify this output 3042 3042 * 3043 * @return str $current_group_slug The slug of the current group, if there is one3043 * @return string $current_group_slug The slug of the current group, if there is one 3044 3044 */ 3045 3045 function bp_get_current_group_slug() { … … 3066 3066 * @uses apply_filters() Filter bp_get_current_group_name to modify this output 3067 3067 * 3068 * @return str The name of the current group, if there is one3068 * @return string The name of the current group, if there is one 3069 3069 */ 3070 3070 function bp_get_current_group_name() {
Note: See TracChangeset
for help on using the changeset viewer.