Changeset 6654
- Timestamp:
- 12/22/2012 11:46:51 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-catchuri.php
r6472 r6654 19 19 * add new re-write rules. Custom components are able to use their own custom 20 20 * URI structures with very little work. 21 *22 * @package BuddyPress Core23 * @since BuddyPress (1.0)24 21 * 25 22 * The URI's are broken down as follows: … … 33 30 * - $bp->action_variables: array ['group', 5] 34 31 * 32 * @package BuddyPress Core 33 * @since BuddyPress (1.0) 35 34 */ 36 35 function bp_core_set_uri_globals() { -
trunk/bp-core/bp-core-classes.php
r6638 r6654 115 115 * Constructor 116 116 * 117 * @since 1.7117 * @since BuddyPress (1.7) 118 118 * 119 119 * @param string|array $query The query variables -
trunk/bp-groups/bp-groups-admin.php
r6644 r6654 7 7 * 8 8 * @package BuddyPress 9 * @since 1.79 * @since BuddyPress (1.7) 10 10 * @subpackage Groups 11 11 */ … … 24 24 * Registers the Groups component admin screen 25 25 * 26 * @since 1.726 * @since BuddyPress (1.7) 27 27 */ 28 28 function bp_groups_add_admin_menu() { … … 51 51 * @global object $bp BuddyPress global settings 52 52 * @global BP_Groups_List_Table $bp_groups_list_table Groups screen list table 53 * @since 1.653 * @since BuddyPress (1.6) 54 54 */ 55 55 function bp_groups_admin_load() { … … 369 369 * Outputs the Groups component admin screens 370 370 * 371 * @since 1.7371 * @since BuddyPress (1.7) 372 372 */ 373 373 function bp_groups_admin() { … … 392 392 * Display the single groups edit screen 393 393 * 394 * @since 1.7394 * @since BuddyPress (1.7) 395 395 */ 396 396 function bp_groups_admin_edit() { … … 566 566 * @global BP_Activity_List_Table $bp_groups_list_table Activity screen list table 567 567 * @global string $plugin_page 568 * @since 1.7568 * @since BuddyPress (1.7) 569 569 */ 570 570 function bp_groups_admin_index() { … … 623 623 * 624 624 * @param object $item Group item 625 * @since 1.7625 * @since BuddyPress (1.7) 626 626 */ 627 627 function bp_groups_admin_edit_metabox_settings( $item ) { … … 659 659 * Add New Members metabox 660 660 * 661 * @since 1.7661 * @since BuddyPress (1.7) 662 662 */ 663 663 function bp_groups_admin_edit_metabox_add_new_members( $item ) { … … 672 672 * Members metabox 673 673 * 674 * @since 1.7674 * @since BuddyPress (1.7) 675 675 */ 676 676 function bp_groups_admin_edit_metabox_members( $item ) { … … 799 799 * 800 800 * @param object $item Group item 801 * @since 1.7801 * @since BuddyPress (1.7) 802 802 */ 803 803 function bp_groups_admin_edit_metabox_status( $item ) { … … 827 827 * Match a set of user ids up to a set of usernames 828 828 * 829 * @since 1.7829 * @since BuddyPress (1.7) 830 830 */ 831 831 function bp_groups_admin_get_usernames_from_ids( $user_ids ) { … … 843 843 * AJAX handler for group member autocomplete requests 844 844 * 845 * @since 1.7845 * @since BuddyPress (1.7) 846 846 */ 847 847 function bp_groups_admin_autocomplete_handler() { … … 877 877 * List table class for the Groups component admin page. 878 878 * 879 * @since 1.6879 * @since BuddyPress (1.6) 880 880 */ 881 881 class BP_Groups_List_Table extends WP_List_Table { … … 884 884 * What type of view is being displayed? e.g. "All", "Pending", "Approved", "Spam"... 885 885 * 886 * @since 1.6886 * @since BuddyPress (1.6) 887 887 */ 888 888 public $view = 'all'; … … 891 891 * Group counts for each group type 892 892 * 893 * @since 1.6893 * @since BuddyPress (1.6) 894 894 */ 895 895 public $group_counts = 0; … … 898 898 * Constructor 899 899 * 900 * @since 1.6900 * @since BuddyPress (1.6) 901 901 */ 902 902 public function __construct() { … … 913 913 * Handle filtering of data, sorting, pagination, and any other data-manipulation required prior to rendering. 914 914 * 915 * @since 1.6915 * @since BuddyPress (1.6) 916 916 */ 917 917 function prepare_items() { … … 1017 1017 * 1018 1018 * @return array 1019 * @since 1.71019 * @since BuddyPress (1.7) 1020 1020 */ 1021 1021 function get_column_info() { … … 1032 1032 * Displays a message on screen when no items are found (e.g. no search matches) 1033 1033 * 1034 * @since 1.71034 * @since BuddyPress (1.7) 1035 1035 */ 1036 1036 function no_items() { … … 1041 1041 * Outputs the Groups data table 1042 1042 * 1043 * @since 1.71043 * @since BuddyPress (1.7) 1044 1044 */ 1045 1045 function display() { … … 1074 1074 * 1075 1075 * @param object $item The current item 1076 * @since 1.71076 * @since BuddyPress (1.7) 1077 1077 */ 1078 1078 function single_row( $item ) { … … 1093 1093 * Get the list of views available on this table (e.g. "all", "public"). 1094 1094 * 1095 * @since 1.71095 * @since BuddyPress (1.7) 1096 1096 */ 1097 1097 function get_views() { … … 1112 1112 * 1113 1113 * @return array Key/value pairs for the bulk actions dropdown 1114 * @since 1.71114 * @since BuddyPress (1.7) 1115 1115 */ 1116 1116 function get_bulk_actions() { … … 1126 1126 * @see WP_List_Table::single_row_columns() 1127 1127 * @return array 1128 * @since 1.71128 * @since BuddyPress (1.7) 1129 1129 */ 1130 1130 function get_columns() { … … 1144 1144 * 1145 1145 * @return array 1146 * @since 1.71146 * @since BuddyPress (1.7) 1147 1147 */ 1148 1148 function get_sortable_columns() { … … 1160 1160 * @param array $item A singular item (one full row) 1161 1161 * @see WP_List_Table::single_row_columns() 1162 * @since 1.61162 * @since BuddyPress (1.6) 1163 1163 */ 1164 1164 function column_cb( $item ) { … … 1171 1171 * @param array $item A singular item (one full row) 1172 1172 * @see WP_List_Table::single_row_columns() 1173 * @since 1.61173 * @since BuddyPress (1.6) 1174 1174 */ 1175 1175 function column_gid( $item ) { … … 1184 1184 * @param array $item A singular item (one full row) 1185 1185 * @see WP_List_Table::single_row_columns() 1186 * @since 1.71186 * @since BuddyPress (1.7) 1187 1187 */ 1188 1188 function column_comment( $item ) { … … 1239 1239 * Description column 1240 1240 * 1241 * @since 1.71241 * @since BuddyPress (1.7) 1242 1242 */ 1243 1243 function column_description( $item ) { … … 1248 1248 * Status column 1249 1249 * 1250 * @since 1.71250 * @since BuddyPress (1.7) 1251 1251 */ 1252 1252 function column_status( $item ) { … … 1275 1275 * Number of Members column 1276 1276 * 1277 * @since 1.71277 * @since BuddyPress (1.7) 1278 1278 */ 1279 1279 function column_members( $item ) { … … 1285 1285 * Last Active column 1286 1286 * 1287 * @since 1.71287 * @since BuddyPress (1.7) 1288 1288 */ 1289 1289 function column_last_active( $item ) { -
trunk/bp-groups/bp-groups-classes.php
r6643 r6654 750 750 * with bp_has_groups() 751 751 * 752 * @since 1.7752 * @since BuddyPress (1.7) 753 753 * 754 754 * @return array … … 1334 1334 * @see https://codex.wordpress.org/Function_Reference/add_meta_box for 1335 1335 * possible values 1336 * @since 1.71336 * @since BuddyPress (1.7) 1337 1337 */ 1338 1338 var $admin_metabox_context = 'normal'; … … 1342 1342 * @see https://codex.wordpress.org/Function_Reference/add_meta_box for 1343 1343 * possible values 1344 * @since 1.71344 * @since BuddyPress (1.7) 1345 1345 */ 1346 1346 var $admin_metabox_priority = 'core'; -
trunk/bp-members/bp-members-functions.php
r6589 r6654 999 999 * - If there's an email domain whitelest, is the current domain on it? 1000 1000 * 1001 * @since 1.6.21001 * @since BuddyPress (1.6.2) 1002 1002 * 1003 1003 * @param string $user_email The email being checked
Note: See TracChangeset
for help on using the changeset viewer.