Changeset 9907 for trunk/src/bp-groups/bp-groups-admin.php
- Timestamp:
- 06/02/2015 05:35:59 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/bp-groups-admin.php
r9906 r9907 1 1 <?php 2 2 /** 3 * BuddyPress Groups component admin screen 3 * BuddyPress Groups component admin screen. 4 4 * 5 5 * Props to WordPress core for the Comments admin screen, and its contextual … … 52 52 * 53 53 * @param array $custom_menus Array of BP top-level menu items. 54 * 54 55 * @return array Menu item array, with Groups added. 55 56 */ … … 247 248 $status = ( in_array( $_POST['group-status'], (array) $allowed_status ) ) ? $_POST['group-status'] : 'public'; 248 249 249 // Invite status250 250 /** 251 251 * Filters the allowed invite status values for the group. … … 434 434 * @since BuddyPress (1.7.0) 435 435 * 436 * @param string $value Will always be false unless another plugin filters it first.437 * @param string $option Screen option name.436 * @param string $value Will always be false unless another plugin filters it first. 437 * @param string $option Screen option name. 438 438 * @param string $new_value Screen option form value. 439 * 439 440 * @return string Option value. False to abandon update. 440 441 */ … … 814 815 * @since BuddyPress (1.7.0) 815 816 * 816 * @param BP_Groups_Group $item The BP_Groups_Group object for the current 817 * group. 817 * @param BP_Groups_Group $item The BP_Groups_Group object for the current group. 818 818 */ 819 819 function bp_groups_admin_edit_metabox_members( $item ) { … … 1005 1005 * @since BuddyPress (1.8.0) 1006 1006 * 1007 * @param BP_Group_Member_Query $query A BP_Group_Member_Query object. 1008 * @param string $member_type member|mod|admin|banned. 1007 * @param BP_Group_Member_Query $query A BP_Group_Member_Query object. 1008 * @param string $member_type member|mod|admin|banned. 1009 * 1009 1010 * @return string Pagination links HTML. 1010 1011 */ … … 1063 1064 * 1064 1065 * @param array $user_ids Array of user IDs. 1066 * 1065 1067 * @return array Array of user_logins corresponding to $user_ids. 1066 1068 */ … … 1133 1135 * 1134 1136 * @since BuddyPress (1.7.0) 1137 * 1135 1138 * @access public 1136 1139 * @var string … … 1142 1145 * 1143 1146 * @since BuddyPress (1.7.0) 1147 * 1144 1148 * @access public 1145 1149 * @var int … … 1449 1453 1450 1454 /** 1451 * Get the column names for sortable columns 1455 * Get the column names for sortable columns. 1452 1456 * 1453 1457 * Note: It's not documented in WP, but the second item in the … … 1683 1687 * @since BuddyPress (2.0.0) 1684 1688 * 1685 * @param array $item Information about the current row.1689 * @param array $item Information about the current row. 1686 1690 * @param string $column_name The column name. 1687 1691 *
Note: See TracChangeset
for help on using the changeset viewer.