BP_Settings_Export
Class BP_Settings_Export
Description
Source
File: bp-core/gdpr/class-bp-settings-export.php
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | final class BP_Settings_Export extends BP_Export { /** * Get the instance of this class. * * @since BuddyBoss 1.0.0 * * @return Controller|null */ public static function instance() { static $instance = null; if ( null === $instance ) { $instance = new BP_Settings_Export(); $instance ->setup( "bp_settings" , __( 'Settings' , 'buddyboss' ) ); } return $instance ; } /** * Export member profile settings. * * @param $user * @param $page * @param bool $email_address * * @since BuddyBoss 1.0.0 * * @return array */ function process_data( $user , $page , $email_address = false ) { if ( ! $user || is_wp_error( $user ) ) { return $this ->response( array (), true ); } $export_items = array (); $group_id = 'bp_settings' ; $group_label = __( 'Settings' , 'buddyboss' ); $item_id = "{$this->exporter_name}-{$group_id}" ; /** * Email Preferences */ $notification_settings = $this ->get_notification_settings(); $notification_data = array (); foreach ( $notification_settings as $noti_key => $notification_label ) { $value = bp_get_user_meta( $user ->ID, $noti_key , true ); if ( empty ( $value ) || 'yes' === $value ) { if ( 'yes' === $value ) { $value = __( 'Yes' , 'buddyboss' ); } else { $value = __( 'Yes (Default)' , 'buddyboss' ); } } else { $value = __( 'No' , 'buddyboss' ); } $notification_data [] = array ( 'name' => $notification_label , 'value' => $value , ); } $notification_data = apply_filters( 'buddyboss_bp_gdpr_notification_settings_after_data_prepare' , $notification_data , $user ); $export_items [] = array ( 'group_id' => $group_id . '_notification' , 'group_label' => __( 'Email Preferences' , 'buddyboss' ), 'item_id' => 'bp_notification_settings' , 'data' => $notification_data , ); $export_items = apply_filters( 'buddyboss_bp_gdpr_additional_settings' , $export_items , $user ); $done = true; return $this ->response( $export_items , $done ); } /** * Delete user profile settings. * * @param $user * @param $page * @param bool $email_address * * @since BuddyBoss 1.0.0 * * @return array */ function process_erase( $user , $page , $email_address ) { if ( ! $user || is_wp_error( $user ) ) { return $this ->response_erase( array (), true ); } $items_removed = true; $items_retained = false; $notification_settings = $this ->get_notification_settings(); foreach ( $notification_settings as $noti_key => $notification_label ) { bp_delete_user_meta( $user ->ID, $noti_key ); } /** * @todo add title/description * * @since BuddyBoss 1.0.0 */ do_action( 'buddyboss_bp_gdpr_delete_additional_settings' , $user ); $done = true; return $this ->response_erase( $items_removed , $done , array (), $items_retained ); } /** * Fetch user settings. * * @since BuddyBoss 1.0.0 * * @return array */ function get_notification_settings() { $notification_settings = array (); if ( bp_is_active( 'activity' ) ) { $notification_settings [ 'notification_activity_new_mention' ] = __( 'A member mentions you in an update using "@name"' , 'buddyboss' ); $notification_settings [ 'notification_activity_new_reply' ] = __( 'A member replies to an update or comment you\'ve posted' , 'buddyboss' ); } if ( bp_is_active( 'messages' ) ) { $notification_settings [ 'notification_messages_new_message' ] = __( 'A member sends you a new message ' , 'buddyboss' ); } if ( bp_is_active( 'friends' ) ) { $notification_settings [ 'notification_friends_friendship_request' ] = __( 'A member invites you to connect' , 'buddyboss' ); $notification_settings [ 'notification_friends_friendship_accepted' ] = __( 'A member accepts your connection request' , 'buddyboss' ); } if ( bp_is_active( 'groups' ) ) { $notification_settings [ 'notification_groups_invite' ] = __( 'A member invites you to join a group' , 'buddyboss' ); $notification_settings [ 'notification_groups_group_updated' ] = __( 'Group information is updated' , 'buddyboss' ); $notification_settings [ 'notification_groups_admin_promotion' ] = __( 'You are promoted to a group organizer or moderator' , 'buddyboss' ); $notification_settings [ 'notification_groups_membership_request' ] = __( 'A member requests to join a private group you organize' , 'buddyboss' ); $notification_settings [ 'notification_membership_request_completed' ] = __( 'Your request to join a group has been approved or denied' , 'buddyboss' ); } return $notification_settings ; } } |
Methods
- get_notification_settings — Fetch user settings.
- instance — Get the instance of this class.
- process_data — Export member profile settings.
- process_erase — Delete user profile settings.
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.