- Timestamp:
- 09/25/2015 02:19:11 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/classes/class-bp-xprofile-group.php
r10023 r10142 7 7 */ 8 8 9 // Exit if accessed directly 9 // Exit if accessed directly. 10 10 defined( 'ABSPATH' ) || exit; 11 11 … … 13 13 14 14 /** 15 * @since BuddyPress (1.1.0)15 * @since 1.1.0 16 16 * 17 17 * @var int ID of field group … … 20 20 21 21 /** 22 * @since BuddyPress (1.1.0)22 * @since 1.1.0 23 23 * 24 24 * @var string Name of field group … … 27 27 28 28 /** 29 * @since BuddyPress (1.1.0)29 * @since 1.1.0 30 30 * 31 31 * @var string Description of field group … … 34 34 35 35 /** 36 * @since BuddyPress (1.1.0)36 * @since 1.1.0 37 37 * 38 38 * @var bool Can this group be deleted? … … 41 41 42 42 /** 43 * @since BuddyPress (1.1.0)43 * @since 1.1.0 44 44 * 45 45 * @var int Group order relative to other groups … … 48 48 49 49 /** 50 * @since BuddyPress (1.1.0)50 * @since 1.1.0 51 51 * 52 52 * @var array Fields of group … … 57 57 * Initialize and/or populate profile field group 58 58 * 59 * @since BuddyPress (1.1.0)59 * @since 1.1.0 60 60 * 61 61 * @param int $id … … 72 72 * Populate a profile field group 73 73 * 74 * @since BuddyPress (1.0.0)74 * @since 1.0.0 75 75 * 76 76 * @global $wpdb $wpdb … … 105 105 * Save a profile field group 106 106 * 107 * @since BuddyPress (1.1.0)107 * @since 1.1.0 108 108 * 109 109 * @global object $wpdb … … 123 123 * Please use this hook to filter the properties above. Each part will be passed in. 124 124 * 125 * @since BuddyPress (1.0.0)125 * @since 1.0.0 126 126 * 127 127 * @param BP_XProfile_Group Current instance of the group being saved. Passed by reference. … … 154 154 * Fires after the current group instance gets saved. 155 155 * 156 * @since BuddyPress (1.0.0)156 * @since 1.0.0 157 157 * 158 158 * @param BP_XProfile_Group Current instance of the group being saved. Passed by reference. … … 166 166 * Delete a profile field group 167 167 * 168 * @since BuddyPress (1.1.0)168 * @since 1.1.0 169 169 * 170 170 * @global object $wpdb … … 182 182 * Fires before the current group instance gets deleted. 183 183 * 184 * @since BuddyPress (2.0.0)184 * @since 2.0.0 185 185 * 186 186 * @param BP_XProfile_Group Current instance of the group being deleted. Passed by reference. … … 209 209 * Fires after the current group instance gets deleted. 210 210 * 211 * @since BuddyPress (2.0.0)211 * @since 2.0.0 212 212 * 213 213 * @param BP_XProfile_Group Current instance of the group being deleted. Passed by reference. … … 469 469 * Get data about a set of groups, based on IDs. 470 470 * 471 * @since BuddyPress (2.0.0)471 * @since 2.0.0 472 472 * 473 473 * @param array $group_ids Array of IDs. … … 538 538 * Validate field group when form submitted 539 539 * 540 * @since BuddyPress (1.0.0)540 * @since 1.0.0 541 541 * 542 542 * @global string $message … … 559 559 * Update field group position 560 560 * 561 * @since BuddyPress (1.5.0)561 * @since 1.5.0 562 562 * 563 563 * @global $wpdb $wpdb … … 585 585 * Fetch the field visibility level for the fields returned by the query 586 586 * 587 * @since BuddyPress (1.6.0)587 * @since 1.6.0 588 588 * 589 589 * @param int $user_id The profile owner's user_id … … 613 613 * Filters the XProfile default visibility level for a field. 614 614 * 615 * @since BuddyPress (1.6.0)615 * @since 1.6.0 616 616 * 617 617 * @param string $value Default visibility value. … … 631 631 * Fetch the admin-set preferences for all fields. 632 632 * 633 * @since BuddyPress (1.6.0)633 * @since 1.6.0 634 634 * 635 635 * @return array $default_visibility_levels An array, keyed by … … 671 671 * Output the admin area field group form 672 672 * 673 * @since BuddyPress (1.0.0)673 * @since 1.0.0 674 674 * 675 675 * @global string $message … … 730 730 * Fires before XProfile Group submit metabox. 731 731 * 732 * @since BuddyPress (2.1.0)732 * @since 2.1.0 733 733 * 734 734 * @param BP_XProfile_Group $this Current XProfile group. … … 747 747 * Fires at the beginning of the XProfile Group publishing actions section. 748 748 * 749 * @since BuddyPress (2.1.0)749 * @since 2.1.0 750 750 * 751 751 * @param BP_XProfile_Group $this Current XProfile group. … … 771 771 * Fires after XProfile Group submit metabox. 772 772 * 773 * @since BuddyPress (2.1.0)773 * @since 2.1.0 774 774 * 775 775 * @param BP_XProfile_Group $this Current XProfile group.
Note: See TracChangeset
for help on using the changeset viewer.