PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
plugins
/
buddypress
/
bp-core
/
classes
<?php /** * Main BuddyPress Admin Class. * * @package BuddyPress * @subpackage CoreAdministration * @since 1.0.0 */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; if ( !class_exists( 'BP_Admin' ) ) : /** * Load BuddyPress plugin admin area. * * @todo Break this apart into each applicable Component. * * @since 1.6.0 */ class BP_Admin { /** Directory *************************************************************/ /** * Path to the BuddyPress admin directory. * * @since 1.6.0 * @var string $admin_dir */ public $admin_dir = ''; /** URLs ******************************************************************/ /** * URL to the BuddyPress admin directory. * * @since 1.6.0 * @var string $admin_url */ public $admin_url = ''; /** * URL to the BuddyPress images directory. * * @since 1.6.0 * @var string $images_url */ public $images_url = ''; /** * URL to the BuddyPress admin CSS directory. * * @since 1.6.0 * @var string $css_url */ public $css_url = ''; /** * URL to the BuddyPress admin JS directory. * * @since 1.6.0 * @var string */ public $js_url = ''; /** Other *****************************************************************/ /** * Notices used for user feedback, like saving settings. * * @since 1.9.0 * @var array() */ public $notices = array(); /** Methods ***************************************************************/ /** * The main BuddyPress admin loader. * * @since 1.6.0 * */ public function __construct() { $this->setup_globals(); $this->includes(); $this->setup_actions(); } /** * Set admin-related globals. * * @since 1.6.0 */ private function setup_globals() { $bp = buddypress(); // Paths and URLs $this->admin_dir = trailingslashit( $bp->plugin_dir . 'bp-core/admin' ); // Admin path. $this->admin_url = trailingslashit( $bp->plugin_url . 'bp-core/admin' ); // Admin url. $this->images_url = trailingslashit( $this->admin_url . 'images' ); // Admin images URL. $this->css_url = trailingslashit( $this->admin_url . 'css' ); // Admin css URL. $this->js_url = trailingslashit( $this->admin_url . 'js' ); // Admin css URL. // Main settings page. $this->settings_page = bp_core_do_network_admin() ? 'settings.php' : 'options-general.php'; // Main capability. $this->capability = bp_core_do_network_admin() ? 'manage_network_options' : 'manage_options'; } /** * Include required files. * * @since 1.6.0 */ private function includes() { require( $this->admin_dir . 'bp-core-admin-actions.php' ); require( $this->admin_dir . 'bp-core-admin-settings.php' ); require( $this->admin_dir . 'bp-core-admin-functions.php' ); require( $this->admin_dir . 'bp-core-admin-components.php' ); require( $this->admin_dir . 'bp-core-admin-slugs.php' ); require( $this->admin_dir . 'bp-core-admin-tools.php' ); } /** * Set up the admin hooks, actions, and filters. * * @since 1.6.0 * */ private function setup_actions() { /* General Actions ***************************************************/ // Add some page specific output to the <head>. add_action( 'bp_admin_head', array( $this, 'admin_head' ), 999 ); // Add menu item to settings menu. add_action( 'admin_menu', array( $this, 'site_admin_menus' ), 5 ); add_action( bp_core_admin_hook(), array( $this, 'admin_menus' ), 5 ); // Enqueue all admin JS and CSS. add_action( 'bp_admin_enqueue_scripts', array( $this, 'admin_register_styles' ), 1 ); add_action( 'bp_admin_enqueue_scripts', array( $this, 'admin_register_scripts' ), 1 ); add_action( 'bp_admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); /* BuddyPress Actions ************************************************/ // Load the BuddyPress metabox in the WP Nav Menu Admin UI. add_action( 'load-nav-menus.php', 'bp_admin_wp_nav_menu_meta_box' ); // Add settings. add_action( 'bp_register_admin_settings', array( $this, 'register_admin_settings' ) ); // Add a link to BuddyPress Hello in the admin bar. add_action( 'admin_bar_menu', array( $this, 'admin_bar_about_link' ), 100 ); // Add a description of new BuddyPress tools in the available tools page. add_action( 'tool_box', 'bp_core_admin_available_tools_intro' ); add_action( 'bp_network_tool_box', 'bp_core_admin_available_tools_intro' ); // On non-multisite, catch. add_action( 'load-users.php', 'bp_core_admin_user_manage_spammers' ); // Emails. add_filter( 'manage_' . bp_get_email_post_type() . '_posts_columns', array( $this, 'emails_register_situation_column' ) ); add_action( 'manage_' . bp_get_email_post_type() . '_posts_custom_column', array( $this, 'emails_display_situation_column_data' ), 10, 2 ); // Privacy Policy. add_action( 'bp_admin_init', array( $this, 'add_privacy_policy_content' ) ); // BuddyPress Hello. add_action( 'admin_footer', array( $this, 'about_screen' ) ); /* Filters ***********************************************************/ // Add link to settings page. add_filter( 'plugin_action_links', array( $this, 'modify_plugin_action_links' ), 10, 2 ); add_filter( 'network_admin_plugin_action_links', array( $this, 'modify_plugin_action_links' ), 10, 2 ); // Add "Mark as Spam" row actions on users.php. add_filter( 'ms_user_row_actions', 'bp_core_admin_user_row_actions', 10, 2 ); add_filter( 'user_row_actions', 'bp_core_admin_user_row_actions', 10, 2 ); // Emails add_filter( 'bp_admin_menu_order', array( $this, 'emails_admin_menu_order' ), 20 ); } /** * Register site- or network-admin nav menu elements. * * Contextually hooked to site or network-admin depending on current configuration. * * @since 1.6.0 */ public function admin_menus() { // Bail if user cannot moderate. if ( ! bp_current_user_can( 'manage_options' ) ) { return; } $hooks = array(); // Changed in BP 1.6 . See bp_core_admin_backpat_menu(). $hooks[] = add_menu_page( __( 'BuddyPress', 'buddypress' ), __( 'BuddyPress', 'buddypress' ), $this->capability, 'bp-general-settings', 'bp_core_admin_backpat_menu', 'div' ); $hooks[] = add_submenu_page( 'bp-general-settings', __( 'BuddyPress Help', 'buddypress' ), __( 'Help', 'buddypress' ), $this->capability, 'bp-general-settings', 'bp_core_admin_backpat_page' ); // Add the option pages. $hooks[] = add_submenu_page( $this->settings_page, __( 'BuddyPress Components', 'buddypress' ), __( 'BuddyPress', 'buddypress' ), $this->capability, 'bp-components', 'bp_core_admin_components_settings' ); $hooks[] = add_submenu_page( $this->settings_page, __( 'BuddyPress Pages', 'buddypress' ), __( 'BuddyPress Pages', 'buddypress' ), $this->capability, 'bp-page-settings', 'bp_core_admin_slugs_settings' ); $hooks[] = add_submenu_page( $this->settings_page, __( 'BuddyPress Options', 'buddypress' ), __( 'BuddyPress Options', 'buddypress' ), $this->capability, 'bp-settings', 'bp_core_admin_settings' ); // Credits. $hooks[] = add_submenu_page( $this->settings_page, __( 'BuddyPress Credits', 'buddypress' ), __( 'BuddyPress Credits', 'buddypress' ), $this->capability, 'bp-credits', array( $this, 'credits_screen' ) ); // For consistency with non-Multisite, we add a Tools menu in // the Network Admin as a home for our Tools panel. if ( is_multisite() && bp_core_do_network_admin() ) { $tools_parent = 'network-tools'; $hooks[] = add_menu_page( __( 'Tools', 'buddypress' ), __( 'Tools', 'buddypress' ), $this->capability, $tools_parent, 'bp_core_tools_top_level_item', '', 24 // Just above Settings. ); $hooks[] = add_submenu_page( $tools_parent, __( 'Available Tools', 'buddypress' ), __( 'Available Tools', 'buddypress' ), $this->capability, 'available-tools', 'bp_core_admin_available_tools_page' ); } else { $tools_parent = 'tools.php'; } $hooks[] = add_submenu_page( $tools_parent, __( 'BuddyPress Tools', 'buddypress' ), __( 'BuddyPress', 'buddypress' ), $this->capability, 'bp-tools', 'bp_core_admin_tools' ); // For network-wide configs, add a link to (the root site's) Emails screen. if ( is_network_admin() && bp_is_network_activated() ) { $email_labels = bp_get_email_post_type_labels(); $email_url = get_admin_url( bp_get_root_blog_id(), 'edit.php?post_type=' . bp_get_email_post_type() ); $hooks[] = add_menu_page( $email_labels['name'], $email_labels['menu_name'], $this->capability, '', '', 'dashicons-email', 26 ); // Hack: change the link to point to the root site's admin, not the network admin. $GLOBALS['menu'][26][2] = esc_url_raw( $email_url ); } foreach( $hooks as $hook ) { add_action( "admin_head-$hook", 'bp_core_modify_admin_menu_highlight' ); } } /** * Register site-admin nav menu elements. * * @since 2.5.0 */ public function site_admin_menus() { if ( ! bp_current_user_can( 'manage_options' ) ) { return; } $hooks = array(); // Appearance > Emails. $hooks[] = add_theme_page( _x( 'Emails', 'screen heading', 'buddypress' ), _x( 'Emails', 'screen heading', 'buddypress' ), $this->capability, 'bp-emails-customizer-redirect', 'bp_email_redirect_to_customizer' ); // Emails > Customize. $hooks[] = add_submenu_page( 'edit.php?post_type=' . bp_get_email_post_type(), _x( 'Customize', 'email menu label', 'buddypress' ), _x( 'Customize', 'email menu label', 'buddypress' ), $this->capability, 'bp-emails-customizer-redirect', 'bp_email_redirect_to_customizer' ); foreach( $hooks as $hook ) { add_action( "admin_head-$hook", 'bp_core_modify_admin_menu_highlight' ); } } /** * Register the settings. * * @since 1.6.0 * */ public function register_admin_settings() { /* Main Section ******************************************************/ // Add the main section. add_settings_section( 'bp_main', __( 'Main Settings', 'buddypress' ), 'bp_admin_setting_callback_main_section', 'buddypress' ); // Hide toolbar for logged out users setting. add_settings_field( 'hide-loggedout-adminbar', __( 'Toolbar', 'buddypress' ), 'bp_admin_setting_callback_admin_bar', 'buddypress', 'bp_main' ); register_setting( 'buddypress', 'hide-loggedout-adminbar', 'intval' ); // Only show 'switch to Toolbar' option if the user chose to retain the BuddyBar during the 1.6 upgrade. if ( (bool) bp_get_option( '_bp_force_buddybar', false ) ) { // Load deprecated code if not available. if ( ! function_exists( 'bp_admin_setting_callback_force_buddybar' ) ) { require buddypress()->plugin_dir . 'bp-core/deprecated/2.1.php'; } add_settings_field( '_bp_force_buddybar', __( 'Toolbar', 'buddypress' ), 'bp_admin_setting_callback_force_buddybar', 'buddypress', 'bp_main' ); register_setting( 'buddypress', '_bp_force_buddybar', 'bp_admin_sanitize_callback_force_buddybar' ); } // Allow account deletion. add_settings_field( 'bp-disable-account-deletion', __( 'Account Deletion', 'buddypress' ), 'bp_admin_setting_callback_account_deletion', 'buddypress', 'bp_main' ); register_setting( 'buddypress', 'bp-disable-account-deletion', 'intval' ); // Template pack picker. add_settings_field( '_bp_theme_package_id', __( 'Template Pack', 'buddypress' ), 'bp_admin_setting_callback_theme_package_id', 'buddypress', 'bp_main', array( 'label_for' => '_bp_theme_package_id' ) ); register_setting( 'buddypress', '_bp_theme_package_id', 'sanitize_text_field' ); /* XProfile Section **************************************************/ if ( bp_is_active( 'xprofile' ) ) { // Add the main section. add_settings_section( 'bp_xprofile', _x( 'Profile Settings', 'BuddyPress setting tab', 'buddypress' ), 'bp_admin_setting_callback_xprofile_section', 'buddypress' ); // Avatars. add_settings_field( 'bp-disable-avatar-uploads', __( 'Profile Photo Uploads', 'buddypress' ), 'bp_admin_setting_callback_avatar_uploads', 'buddypress', 'bp_xprofile' ); register_setting( 'buddypress', 'bp-disable-avatar-uploads', 'intval' ); // Cover images. if ( bp_is_active( 'xprofile', 'cover_image' ) ) { add_settings_field( 'bp-disable-cover-image-uploads', __( 'Cover Image Uploads', 'buddypress' ), 'bp_admin_setting_callback_cover_image_uploads', 'buddypress', 'bp_xprofile' ); register_setting( 'buddypress', 'bp-disable-cover-image-uploads', 'intval' ); } // Profile sync setting. add_settings_field( 'bp-disable-profile-sync', __( 'Profile Syncing', 'buddypress' ), 'bp_admin_setting_callback_profile_sync', 'buddypress', 'bp_xprofile' ); register_setting ( 'buddypress', 'bp-disable-profile-sync', 'intval' ); } /* Groups Section ****************************************************/ if ( bp_is_active( 'groups' ) ) { // Add the main section. add_settings_section( 'bp_groups', __( 'Groups Settings', 'buddypress' ), 'bp_admin_setting_callback_groups_section', 'buddypress' ); // Allow subscriptions setting. add_settings_field( 'bp_restrict_group_creation', __( 'Group Creation', 'buddypress' ), 'bp_admin_setting_callback_group_creation', 'buddypress', 'bp_groups' ); register_setting( 'buddypress', 'bp_restrict_group_creation', 'intval' ); // Allow group avatars. add_settings_field( 'bp-disable-group-avatar-uploads', __( 'Group Photo Uploads', 'buddypress' ), 'bp_admin_setting_callback_group_avatar_uploads', 'buddypress', 'bp_groups' ); register_setting( 'buddypress', 'bp-disable-group-avatar-uploads', 'intval' ); // Allow group cover images. if ( bp_is_active( 'groups', 'cover_image' ) ) { add_settings_field( 'bp-disable-group-cover-image-uploads', __( 'Group Cover Image Uploads', 'buddypress' ), 'bp_admin_setting_callback_group_cover_image_uploads', 'buddypress', 'bp_groups' ); register_setting( 'buddypress', 'bp-disable-group-cover-image-uploads', 'intval' ); } } /* Activity Section **************************************************/ if ( bp_is_active( 'activity' ) ) { // Add the main section. add_settings_section( 'bp_activity', __( 'Activity Settings', 'buddypress' ), 'bp_admin_setting_callback_activity_section', 'buddypress' ); // Activity commenting on post and comments. add_settings_field( 'bp-disable-blogforum-comments', __( 'Post Comments', 'buddypress' ), 'bp_admin_setting_callback_blogforum_comments', 'buddypress', 'bp_activity' ); register_setting( 'buddypress', 'bp-disable-blogforum-comments', 'bp_admin_sanitize_callback_blogforum_comments' ); // Activity Heartbeat refresh. add_settings_field( '_bp_enable_heartbeat_refresh', __( 'Activity auto-refresh', 'buddypress' ), 'bp_admin_setting_callback_heartbeat', 'buddypress', 'bp_activity' ); register_setting( 'buddypress', '_bp_enable_heartbeat_refresh', 'intval' ); // Allow activity akismet. if ( is_plugin_active( 'akismet/akismet.php' ) && defined( 'AKISMET_VERSION' ) ) { add_settings_field( '_bp_enable_akismet', __( 'Akismet', 'buddypress' ), 'bp_admin_setting_callback_activity_akismet', 'buddypress', 'bp_activity' ); register_setting( 'buddypress', '_bp_enable_akismet', 'intval' ); } } } /** * Add a link to BuddyPress Hello to the admin bar. * * @since 1.9.0 * @since 3.0.0 Hooked at priority 100 (was 15). * * @param WP_Admin_Bar $wp_admin_bar */ public function admin_bar_about_link( $wp_admin_bar ) { if ( ! is_user_logged_in() ) { return; } $wp_admin_bar->add_menu( array( 'parent' => 'wp-logo', 'id' => 'bp-about', 'title' => esc_html_x( 'Hello, BuddyPress!', 'Colloquial alternative to "learn about BuddyPress"', 'buddypress' ), 'href' => bp_get_admin_url( '?hello=buddypress' ), 'meta' => array( 'class' => 'say-hello-buddypress', ), ) ); } /** * Add Settings link to plugins area. * * @since 1.6.0 * * @param array $links Links array in which we would prepend our link. * @param string $file Current plugin basename. * @return array Processed links. */ public function modify_plugin_action_links( $links, $file ) { // Return normal links if not BuddyPress. if ( plugin_basename( buddypress()->basename ) != $file ) { return $links; } // Add a few links to the existing links array. return array_merge( $links, array( 'settings' => '<a href="' . esc_url( add_query_arg( array( 'page' => 'bp-components' ), bp_get_admin_url( $this->settings_page ) ) ) . '">' . esc_html__( 'Settings', 'buddypress' ) . '</a>', 'about' => '<a href="' . esc_url( bp_get_admin_url( '?hello=buddypress' ) ) . '">' . esc_html_x( 'Hello, BuddyPress!', 'Colloquial alternative to "learn about BuddyPress"', 'buddypress' ) . '</a>' ) ); } /** * Add some general styling to the admin area. * * @since 1.6.0 */ public function admin_head() { // Settings pages. remove_submenu_page( $this->settings_page, 'bp-page-settings' ); remove_submenu_page( $this->settings_page, 'bp-settings' ); remove_submenu_page( $this->settings_page, 'bp-credits' ); // Network Admin Tools. remove_submenu_page( 'network-tools', 'network-tools' ); // About and Credits pages. remove_submenu_page( 'index.php', 'bp-about' ); remove_submenu_page( 'index.php', 'bp-credits' ); } /** * Add some general styling to the admin area. * * @since 1.6.0 */ public function enqueue_scripts() { wp_enqueue_style( 'bp-admin-common-css' ); // BuddyPress Hello if ( 0 === strpos( get_current_screen()->id, 'dashboard' ) && ! empty( $_GET['hello'] ) && $_GET['hello'] === 'buddypress' ) { wp_enqueue_style( 'bp-hello-css' ); wp_enqueue_script( 'bp-hello-js' ); } } /** * Registers BuddyPress's suggested privacy policy language. * * @since 3.x.y */ public function add_privacy_policy_content() { // Nothing to do if we're running < WP 4.9.6. if ( version_compare( $GLOBALS['wp_version'], '4.9.6', '<' ) ) { return; } $suggested_text = '<strong class="privacy-policy-tutorial">' . esc_html__( 'Suggested text:', 'buddypress' ) . ' </strong>'; $content = ''; $content .= '<div class="wp-suggested-text">'; $content .= '<h2>' . esc_html__( 'What personal data we collect and why we collect it', 'buddypress' ) . '</h2>'; $content .= '<p class="privacy-policy-tutorial">' . esc_html__( 'Sites powered by BuddyPress rely heavily on user-provided data. In this section, you should note what data you collect, from both registered users and anonymous visitors.', 'buddypress' ) . '</p>'; if ( bp_is_active( 'xprofile' ) ) { $content .= '<h3>' . esc_html__( 'Profile Data', 'buddypress' ) . '</h3>'; $content .= '<p class="privacy-policy-tutorial">' . esc_html__( 'In this section you should note what information is collected on user profiles. The suggested text gives an overview of the kinds of profile data collected by BuddyPress.', 'buddypress' ) . '</p>'; $content .= '<p>' . $suggested_text . esc_html__( 'When you register for the site, you may be asked to provide certain personal data for display on your profile. The "Name" field is required as well as public, and user profiles are visible to any site visitor. Other profile information may be required or optional, as configured by the site administrator.', 'buddypress' ) . '</p>'; $content .= '<p>' . esc_html__( 'User information provided during account registration can be modified or removed on the Profile > Edit panel. In most cases, users also have control over who is able to view a particular piece of profile content, limiting visibility on a field-by-field basis to friends, logged-in users, or administrators only. Site administrators can read and edit all profile data for all users.', 'buddypress' ) . '</p>'; } if ( bp_is_active( 'activity' ) ) { $content .= '<h3>' . esc_html__( 'Activity', 'buddypress' ) . '</h3>'; $content .= '<p class="privacy-policy-tutorial">' . esc_html__( 'In this section you should describe the kinds of information collected in the activity stream, how and whether it can be edited or deleted, and to whom the activity is visible.', 'buddypress' ) . '</p>'; $content .= '<p>' . $suggested_text . esc_html__( 'This site records certain user actions, in the form of "activity" data. Activity includes updates and comments posted directly to activity streams, as well as descriptions of other actions performed while using the site, such as new friendships, newly joined groups, and profile updates.', 'buddypress' ) . '</p>'; $content .= '<p>' . esc_html__( 'The content of activity items obey the same privacy rules as the contexts in which the activity items are created. For example, activity updates created in a user\'s profile is publicly visible, while activity items generated in a private group are visible only to members of that group. Site administrators can view all activity items, regardless of context.', 'buddypress' ) . '</p>'; $content .= '<p>' . esc_html__( 'Activity items may be deleted at any time by users who created them. Site administrators can edit all activity items.', 'buddypress' ) . '</p>'; } if ( bp_is_active( 'messages' ) ) { $content .= '<h3>' . esc_html__( 'Messages', 'buddypress' ) . '</h3>'; $content .= '<p class="privacy-policy-tutorial">' . esc_html__( 'In this section you should describe any personal data related to private messages.', 'buddypress' ) . '</p>'; $content .= '<p>' . $suggested_text . esc_html__( 'The content of private messages is visible only to the sender and the recipients of the message. With the exception of site administrators, who can read all private messages, private message content is never visible to other users or site visitors. Site administrators may delete the content of any message.', 'buddypress' ) . '</p>'; } $content .= '<h3>' . esc_html__( 'Cookies', 'buddypress' ) . '</h3>'; $content .= '<p class="privacy-policy-tutorial">' . esc_html__( 'In this section you should describe the BuddyPress-specific cookies that your site collects. The suggested text describes the default cookies.', 'buddypress' ) . '</p>'; $content .= '<p>' . $suggested_text . esc_html__( 'We use a cookie to show success and failure messages to logged-in users, in response to certain actions, like joining a group. These cookies contain no personal data, and are deleted immediately after the next page load.', 'buddypress' ) . '</p>'; $content .= '<p>' . esc_html__( 'We use cookies on group, member, and activity directories to keep track of a user\'s browsing preferences. These preferences include the last-selected values of the sort and filter dropdowns, as well as pagination information. These cookies contain no personal data, and are deleted after 24 hours.', 'buddypress' ) . '</p>'; if ( bp_is_active( 'groups' ) ) { $content .= '<p>' . esc_html__( 'When a logged-in user creates a new group, we use a number of cookies to keep track of the group creation process. These cookies contain no personal data, and are deleted either upon the successful creation of the group or after 24 hours.', 'buddypress' ) . '</p>'; } $content .= '</div><!-- .wp-suggested-text -->'; wp_add_privacy_policy_content( 'BuddyPress', wp_kses_post( wpautop( $content, false ) ) ); } /** About *****************************************************************/ /** * Output the BuddyPress Hello template. * * @since 1.7.0 Screen content. * @since 3.0.0 Now outputs BuddyPress Hello template. */ public function about_screen() { if ( 0 !== strpos( get_current_screen()->id, 'dashboard' ) || empty( $_GET['hello'] ) || $_GET['hello'] !== 'buddypress' ) { return; } ?> <div id="bp-hello-backdrop" style="display: none;"> </div> <div id="bp-hello-container" role="dialog" aria-labelledby="bp-hello-title" style="display: none;"> <div class="bp-hello-header" role="document"> <div class="bp-hello-close"> <button type="button" class="close-modal button bp-tooltip" data-bp-tooltip="<?php esc_attr_e( 'Close pop-up', 'buddypress' ); ?>"> <span class="screen-reader-text"><?php esc_html_e( 'Close pop-up', 'buddypress' ); ?></span> </button> </div> <div class="bp-hello-title"> <h1 id="bp-hello-title" tabindex="-1"><?php echo esc_html( _x( 'New in BuddyPress', 'section heading', 'buddypress' ) ); ?></h1> </div> </div> <div class="bp-hello-content"> <h2><?php esc_html_e( 'New tools for data control and privacy', 'buddypress' ); ?></h2> <p> <?php esc_html_e( 'BuddyPress boasts a proud history of letting community members and managers control their data, independent of third-party, commercial entities. In this spirit, as well as the spirit of recent regulations like the EU\'s General Data Protection Regulation (GDPR), BuddyPress 4.0 introduces a suite of tools allowing users and site admins to manage member data and privacy.', 'buddypress' ); ?> </p> <figure class="bp-hello-alignright"> <img class="bp-hello-img-border" src="<?php echo esc_url( buddypress()->plugin_url . 'bp-core/images/data-export.png' ); ?>" alt="<?php esc_attr_e( 'Screenshot of Export Data settings panel', 'buddypress' ); ?>" /> <figcaption> <?php esc_html_e( 'Improved user control over data exports', 'buddypress' ); ?> </figcaption> </figure> <p><?php esc_html_e( 'The new "Export Data" Settings panel lets users request an export of all BuddyPress data they\'ve created. BuddyPress integrates seamlessly with the data export functionality introduced in WordPress 4.9.8, and BP data is included in exports that are initiated either from the Export Data panel or via WP\'s Tools > Export Personal Data interface.', 'buddypress' ); ?></p> <p><?php esc_html_e( 'BuddyPress 4.0 also integrates with WordPress 4.9.8\'s Privacy Policy tools. When you create or update your Privacy Policy, BP will suggest text that\'s specifically tailored to the kinds of social data generated on a BuddyPress site. And will prompt registering users to agree to the Privacy Policy, if your theme supports it.', 'buddypress' ); ?></p> <h2><?php esc_html_e( 'Nouveau template improvements', 'buddypress' ); ?></h2> <p><?php esc_html_e( 'BuddyPress 3.0 introduced a new set of default templates, which we call "Nouveau". In 4.0, we\'ve fixed bugs and smoothed the edges in these templates, including more accessible markup and improved appearance on mobile devices.', 'buddypress' ); ?></p> <h2><?php esc_html_e( "BuddyPress: leaner, faster, stronger", 'buddypress' ); ?></h2> <p><?php esc_html_e( 'With every BuddyPress version, we strive to make internal improvements to performance and code quality in addition to introducing new features and fixes. In BuddyPress 4.0, we\'ve improved PHP compatibility both in our codebase and in our automated testing tools; we\'ve reworked some automated tests for faster performance; we\'ve ensured compatibility with upcoming changes in WordPress; and we\'ve fixed a number of bugs in the formatting and sending of emails.', 'buddypress' ); ?></p> <p><em> <?php printf( __( 'To read the full list of features, fixes, and changes in this version of BuddyPress, <a href="%s">visit Trac</a>.', 'buddypress' ), esc_url( 'https://buddypress.trac.wordpress.org/query?group=status&milestone=4.0' ) ); ?> </em></p> <h2><?php echo esc_html( _x( 'Your feedback', 'screen heading', 'buddypress' ) ); ?></h2> <p> <?php printf( __( ' How are you using BuddyPress? Receiving your feedback and suggestions for future versions of BuddyPress genuinely motivates and encourages our contributors. Please <a href="%s">share your feedback</a> about this version of BuddyPress on our website. ', 'buddypress' ), esc_url( 'https://buddypress.org/support/' ) ); ?> </p> <p><?php esc_html_e( 'Thank you for using BuddyPress! 😊', 'buddypress' ); ?></p> <br /><br /> </div> <div class="bp-hello-footer"> <div class="bp-hello-social-cta"> <p> <?php printf( _n( 'Built by <a href="%s">%s volunteer</a>.', 'Built by <a href="%s">%s volunteers</a>.', 35, 'buddypress' ), esc_url( bp_get_admin_url( 'admin.php?page=bp-credits' ) ), number_format_i18n( 35 ) ); ?> </p> </div> <div class="bp-hello-social-links"> <ul class="bp-hello-social"> <li> <?php printf( '<a class="twitter bp-tooltip" data-bp-tooltip="%1$s" href="%2$s"><span class="screen-reader-text">%3$s</span></a>', esc_attr( 'Follow BuddyPress on Twitter', 'buddypress' ), esc_url( 'https://twitter.com/buddypress' ), esc_html( 'Follow BuddyPress on Twitter', 'buddypress' ) ); ?> </li> <li> <?php printf( '<a class="support bp-tooltip" data-bp-tooltip="%1$s" href="%2$s"><span class="screen-reader-text">%3$s</span></a>', esc_attr( 'Visit the Support Forums', 'buddypress' ), esc_url( 'https://buddypress.org/support/' ), esc_html( 'Visit the Support Forums', 'buddypress' ) ); ?> </li> </ul> </div> </div> </div> <?php } /** * Output the credits screen. * * Hardcoding this in here is pretty janky. It's fine for now, but we'll * want to leverage api.wordpress.org eventually. * * @since 1.7.0 */ public function credits_screen() { ?> <div class="wrap bp-about-wrap"> <h1><?php _e( 'BuddyPress Settings', 'buddypress' ); ?> </h1> <h2 class="nav-tab-wrapper"><?php bp_core_admin_tabs( __( 'Credits', 'buddypress' ) ); ?></h2> <p class="about-description"><?php _e( 'Meet the contributors behind BuddyPress:', 'buddypress' ); ?></p> <h3 class="wp-people-group"><?php _e( 'Project Leaders', 'buddypress' ); ?></h3> <ul class="wp-people-group " id="wp-people-group-project-leaders"> <li class="wp-person" id="wp-person-johnjamesjacoby"> <a class="web" href="https://profiles.wordpress.org/johnjamesjacoby"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/7a2644fb53ae2f7bfd7143b504af396c?s=120"> John James Jacoby</a> <span class="title"><?php _e( 'Project Lead', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-boonebgorges"> <a class="web" href="https://profiles.wordpress.org/boonebgorges"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/9cf7c4541a582729a5fc7ae484786c0c?s=120"> Boone B. Gorges</a> <span class="title"><?php _e( 'Lead Developer', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-djpaul"> <a class="web" href="https://profiles.wordpress.org/djpaul"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/3bc9ab796299d67ce83dceb9554f75df?s=120"> Paul Gibbs</a> <span class="title"><?php _e( 'Lead Developer', 'buddypress' ); ?></span> </li> </ul> <h3 class="wp-people-group"><?php _e( 'BuddyPress Team', 'buddypress' ); ?></h3> <ul class="wp-people-group " id="wp-people-group-core-team"> <li class="wp-person" id="wp-person-r-a-y"> <a class="web" href="https://profiles.wordpress.org/r-a-y"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/3bfa556a62b5bfac1012b6ba5f42ebfa?s=120"> Ray</a> <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-hnla"> <a class="web" href="https://profiles.wordpress.org/hnla"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/3860c955aa3f79f13b92826ae47d07fe?s=120"> Hugo Ashmore</a> <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-imath"> <a class="web" href="https://profiles.wordpress.org/imath"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/8b208ca408dad63888253ee1800d6a03?s=120"> Mathieu Viet</a> <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-mercime"> <a class="web" href="https://profiles.wordpress.org/mercime"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/fae451be6708241627983570a1a1817a?s=120"> Mercime</a> <span class="title"><?php _e( 'Navigator', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-dcavins"> <a class="web" href="https://profiles.wordpress.org/dcavins"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/a5fa7e83d59cb45ebb616235a176595a?s=120"> David Cavins</a> <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-tw2113"> <a class="web" href="https://profiles.wordpress.org/tw2113"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/a5d7c934621fa1c025b83ee79bc62366?s=120"> Michael Beckwith</a> <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-henry-wright"> <a class="web" href="https://profiles.wordpress.org/henry.wright"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/0da2f1a9340d6af196b870f6c107a248?s=120"> Henry Wright</a> <span class="title"><?php _e( 'Community Support', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-danbp"> <a class="web" href="https://profiles.wordpress.org/danbp"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/0deae2e7003027fbf153500cd3fa5501?s=120"> danbp</a> <span class="title"><?php _e( 'Community Support', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-shanebp"> <a class="web" href="https://profiles.wordpress.org/shanebp"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/ffd294ab5833ba14aaf175f9acc71cc4?s=120"> shanebp</a> <span class="title"><?php _e( 'Community Support', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-slaffik"> <a class="web" href="https://profiles.wordpress.org/r-a-y"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/61fb07ede3247b63f19015f200b3eb2c?s=120"> Slava Abakumov</a> <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-offereins"> <a class="web" href="https://profiles.wordpress.org/Offereins"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/2404ed0a35bb41aedefd42b0a7be61c1?s=120"> Laurens Offereins</a> <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-netweb"> <a class="web" href="https://profiles.wordpress.org/netweb"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/97e1620b501da675315ba7cfb740e80f?s=120"> Stephen Edgar</a> <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-espellcaste"> <a class="web" href="https://profiles.wordpress.org/espellcaste"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/b691e67be0ba5cad6373770656686bc3?s=120"> Renato Alves</a> <span class="title"><?php _e( 'Core Developer', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-venutius"> <a class="web" href="https://profiles.wordpress.org/venutius"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/6a7c42a77fd94b82b217a7a97afdddbc?s=120"> Venutius</a> <span class="title"><?php _e( 'Community Support', 'buddypress' ); ?></span> </li> </ul> <h3 class="wp-people-group"><?php _e( 'Recent Rockstars', 'buddypress' ); ?></h3> <ul class="wp-people-group " id="wp-people-group-rockstars"> <li class="wp-person" id="wp-person-dimensionmedia"> <a class="web" href="https://profiles.wordpress.org/dimensionmedia"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/7735aada1ec39d0c1118bd92ed4551f1?s=120"> David Bisset</a> </li> <li class="wp-person" id="wp-person-garrett-eclipse"> <a class="web" href="https://profiles.wordpress.org/garrett-eclipse"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/7f68f24441c61514d5d0e1451bb5bc9d?s=120"> Garrett Hyder</a> </li> <li class="wp-person" id="wp-person-thebrandonallen"> <a class="web" href="https://profiles.wordpress.org/thebrandonallen"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/6d3f77bf3c9ca94c406dea401b566950?s=120"> Brandon Allen</a> </li> <li class="wp-person" id="wp-person-ramiy"> <a class="web" href="https://profiles.wordpress.org/ramiy"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/ce2a269e424156d79cb0c4e1d4d82db1?s=120"> Rami Yushuvaev</a> </li> <li class="wp-person" id="wp-person-vapvarun"> <a class="web" href="https://profiles.wordpress.org/vapvarun"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/78a3bf7eb3a1132fc667f96f2631e448?s=120"> Vapvarun</a> </li> </ul> <h3 class="wp-people-group"><?php printf( esc_html__( 'Contributors to BuddyPress %s', 'buddypress' ), self::display_version() ); ?></h3> <p class="wp-credits-list"> <a href="https://profiles.wordpress.org/xknown/">Alex Concha (xknown)</a>, <a href="https://profiles.wordpress.org/ankit-k-gupta/">Ankit K Gupta (ankit-k-gupta)</a>, <a href="https://profiles.wordpress.org/boonebgorges/">Boone B Gorges (boonebgorges)</a>, <a href="https://profiles.wordpress.org/sbrajesh/">Brajesh Singh (sbrajesh)</a>, <a href="https://profiles.wordpress.org/brianbws/">Brian Cruikshank (brianbws)</a>, <a href="https://profiles.wordpress.org/needle/">Christian Wach (needle)</a>, <a href="https://profiles.wordpress.org/cyberwani/">Dinesh Kesarwani (cyberwani)</a>, <a href="https://profiles.wordpress.org/dipesh.kakadipa/">dipeshkakadiya</a>, <a href="https://profiles.wordpress.org/drywallbmb/">drywallbmb</a>, <a href="https://profiles.wordpress.org/dullowl/">dullowl</a>, <a href="https://profiles.wordpress.org/eric01/">Eric (eric01)</a>, <a href="https://profiles.wordpress.org/garrett-eclipse/">Garrett Hyder (garrett-eclipse)</a>, <a href="https://profiles.wordpress.org/harshall/">Harshal Limaye (harshall)</a>, <a href="https://profiles.wordpress.org/hnla/">Hugo (hnla)</a>, <a href="https://profiles.wordpress.org/johnjamesjacoby/">John James Jacoby (johnjamesjacoby)</a>, <a href="https://profiles.wordpress.org/marcella1981/">Marcella (marcella1981)</a>, <a href="https://profiles.wordpress.org/imath/">Mathieu Viet (imath)</a>, <a href="https://profiles.wordpress.org/mercime/">mercime</a>, <a href="https://profiles.wordpress.org/MorgunovVit/">MorgunovVit</a>, <a href="https://profiles.wordpress.org/n0barcode/">n0barcode</a>, <a href="https://profiles.wordpress.org/pareshradadiya/">paresh.radadiya (pareshradadiya)</a>, <a href="https://profiles.wordpress.org/DJPaul/">Paul Gibbs (DJPaul)</a>, <a href="https://profiles.wordpress.org/pooja1210/">Pooja N Muchandikar (pooja1210)</a>, <a href="https://profiles.wordpress.org/r-a-y/">r-a-y</a>, <a href="https://profiles.wordpress.org/espellcaste/">Renato Alves (espellcaste)</a>, <a href="https://profiles.wordpress.org/RT77/">RT77</a>, <a href="https://profiles.wordpress.org/cyclic/">Ryan Williams (cyclic)</a>, <a href="https://profiles.wordpress.org/elhardoum/">Samuel Elh (elhardoum)</a>, <a href="https://profiles.wordpress.org/shubh14/">shubh14</a>, <a href="https://profiles.wordpress.org/spdustin/">spdustin</a>, <a href="https://profiles.wordpress.org/suvikki/">suvikki</a>, <a href="https://profiles.wordpress.org/netweb/">Stephen Edgar (netweb)</a>, <a href="https://profiles.wordpress.org/thejimmy/">thejimmy</a>, <a href="https://profiles.wordpress.org/vapvarun/">vapvarun</a>, <a href="https://profiles.wordpress.org/wbcomdesigns/">Wbcom Designs (wbcomdesigns)</a>, <a href="https://profiles.wordpress.org/yahil/">Yahil Madakiya (yahil)</a> </p> <h3 class="wp-people-group"><?php _e( 'With our thanks to these Open Source projects', 'buddypress' ); ?></h3> <p class="wp-credits-list"> <a href="https://github.com/ichord/At.js">At.js</a>, <a href="https://bbpress.org">bbPress</a>, <a href="https://github.com/ichord/Caret.js">Caret.js</a>, <a href="https://tedgoas.github.io/Cerberus/">Cerberus</a>, <a href="https://ionicons.com/">Ionicons</a>, <a href="https://github.com/carhartl/jquery-cookie">jquery.cookie</a>, <a href="https://mattbradley.github.io/livestampjs/">Livestamp.js</a>, <a href="https://www.mediawiki.org/wiki/MediaWiki">MediaWiki</a>, <a href="https://momentjs.com/">Moment.js</a>, <a href="https://wordpress.org">WordPress</a>. </p> <h3 class="wp-people-group"><?php _e( 'Contributor Emeriti', 'buddypress' ); ?></h3> <ul class="wp-people-group " id="wp-people-group-emeriti"> <li class="wp-person" id="wp-person-apeatling"> <a class="web" href="https://profiles.wordpress.org/johnjamesjacoby"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/bb29d699b5cba218c313b61aa82249da?s=120"> Andy Peatling</a> <span class="title"><?php _e( 'Project Founder', 'buddypress' ); ?></span> </li> <li class="wp-person" id="wp-person-burtadsit"> <a class="web" href="https://profiles.wordpress.org/burtadsit"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/185e1d3e2d653af9d49a4e8e4fc379df?s=120"> Burt Adsit</a> </li> <li class="wp-person" id="wp-person-jeffsayre"> <a class="web" href="https://profiles.wordpress.org/jeffsayre"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/8e009a84ff5d245c22a69c7df6ab45f7?s=120"> Jeff Sayre</a> </li> <li class="wp-person" id="wp-person-karmatosed"> <a class="web" href="https://profiles.wordpress.org/karmatosed"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/ca7d4273a689cdbf524d8332771bb1ca?s=120"> Tammie Lister</a> </li> <li class="wp-person" id="wp-person-modemlooper"> <a class="web" href="https://profiles.wordpress.org/modemlooper"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/1c07be1016e845de514931477c939307?s=120"> modemlooper</a> </li> </ul> </div> <?php } /** Emails ****************************************************************/ /** * Registers 'Situations' column on Emails dashboard page. * * @since 2.6.0 * * @param array $columns Current column data. * @return array */ public function emails_register_situation_column( $columns = array() ) { $situation = array( 'situation' => _x( 'Situations', 'Email post type', 'buddypress' ) ); // Inject our 'Situations' column just before the last 'Date' column. return array_slice( $columns, 0, -1, true ) + $situation + array_slice( $columns, -1, null, true ); } /** * Output column data for our custom 'Situations' column. * * @since 2.6.0 * * @param string $column Current column name. * @param int $post_id Current post ID. */ public function emails_display_situation_column_data( $column = '', $post_id = 0 ) { if ( 'situation' !== $column ) { return; } // Grab email situations for the current post. $situations = wp_list_pluck( get_the_terms( $post_id, bp_get_email_tax_type() ), 'description' ); // Output each situation as a list item. echo '<ul><li>'; echo implode( '</li><li>', $situations ); echo '</li></ul>'; } /** Helpers ***************************************************************/ /** * Return true/false based on whether a query argument is set. * * @see bp_do_activation_redirect() * * @since 2.2.0 * * @return bool */ public static function is_new_install() { return (bool) isset( $_GET['is_new_install'] ); } /** * Return a user-friendly version-number string, for use in translations. * * @since 2.2.0 * * @return string */ public static function display_version() { // Use static variable to prevent recalculations. static $display = ''; // Only calculate on first run. if ( '' === $display ) { // Get current version. $version = bp_get_version(); // Check for prerelease hyphen. $pre = strpos( $version, '-' ); // Strip prerelease suffix. $display = ( false !== $pre ) ? substr( $version, 0, $pre ) : $version; } // Done! return $display; } /** * Add Emails menu item to custom menus array. * * Several BuddyPress components have top-level menu items in the Dashboard, * which all appear together in the middle of the Dashboard menu. This function * adds the Emails screen to the array of these menu items. * * @since 2.4.0 * * @param array $custom_menus The list of top-level BP menu items. * @return array $custom_menus List of top-level BP menu items, with Emails added. */ public function emails_admin_menu_order( $custom_menus = array() ) { array_push( $custom_menus, 'edit.php?post_type=' . bp_get_email_post_type() ); if ( is_network_admin() && bp_is_network_activated() ) { array_push( $custom_menus, get_admin_url( bp_get_root_blog_id(), 'edit.php?post_type=' . bp_get_email_post_type() ) ); } return $custom_menus; } /** * Register styles commonly used by BuddyPress wp-admin screens. * * @since 2.5.0 */ public function admin_register_styles() { $min = bp_core_get_minified_asset_suffix(); $url = $this->css_url; /** * Filters the BuddyPress Core Admin CSS file path. * * @since 1.6.0 * * @param string $file File path for the admin CSS. */ $common_css = apply_filters( 'bp_core_admin_common_css', "{$url}common{$min}.css" ); /** * Filters the BuddyPress admin stylesheet files to register. * * @since 2.5.0 * * @param array $value Array of admin stylesheet file information to register. */ $styles = apply_filters( 'bp_core_admin_register_styles', array( // Legacy. 'bp-admin-common-css' => array( 'file' => $common_css, 'dependencies' => array(), ), // 2.5 'bp-customizer-controls' => array( 'file' => "{$url}customizer-controls{$min}.css", 'dependencies' => array(), ), // 3.0 'bp-hello-css' => array( 'file' => "{$url}hello{$min}.css", 'dependencies' => array( 'bp-admin-common-css' ), ), ) ); $version = bp_get_version(); foreach ( $styles as $id => $style ) { wp_register_style( $id, $style['file'], $style['dependencies'], $version ); wp_style_add_data( $id, 'rtl', true ); if ( $min ) { wp_style_add_data( $id, 'suffix', $min ); } } } /** * Register JS commonly used by BuddyPress wp-admin screens. * * @since 2.5.0 */ public function admin_register_scripts() { $min = bp_core_get_minified_asset_suffix(); $url = $this->js_url; /** * Filters the BuddyPress admin JS files to register. * * @since 2.5.0 * * @param array $value Array of admin JS file information to register. */ $scripts = apply_filters( 'bp_core_admin_register_scripts', array( // 2.5 'bp-customizer-controls' => array( 'file' => "{$url}customizer-controls{$min}.js", 'dependencies' => array( 'jquery' ), 'footer' => true, ), // 3.0 'bp-hello-js' => array( 'file' => "{$url}hello{$min}.js", 'dependencies' => array(), 'footer' => true, ), ) ); $version = bp_get_version(); foreach ( $scripts as $id => $script ) { wp_register_script( $id, $script['file'], $script['dependencies'], $version, $script['footer'] ); } } } endif; // End class_exists check.
[+]
..
[-] class-bp-walker-category-checklist.php
[edit]
[-] class-bp-component.php
[edit]
[-] class-bp-phpmailer.php
[edit]
[-] class-bp-core-bp-options-nav-backcompat.php
[edit]
[-] class-bp-core-html-element.php
[edit]
[-] class-bp-core-bp-nav-backcompat.php
[edit]
[-] class-bp-suggestions.php
[edit]
[-] class-bp-core-nav-item.php
[edit]
[-] class-bp-admin.php
[edit]
[-] class-bp-attachment.php
[edit]
[-] class-bp-button.php
[edit]
[-] class-bp-attachment-cover-image.php
[edit]
[-] class-bp-core.php
[edit]
[-] class-bp-attachment-avatar.php
[edit]
[-] class-bp-walker-nav-menu.php
[edit]
[-] class-bp-media-extractor.php
[edit]
[-] class-bp-date-query.php
[edit]
[-] class-bp-core-notification.php
[edit]
[-] class-bp-core-user.php
[edit]
[-] class-bp-core-nav.php
[edit]
[-] class-bp-members-suggestions.php
[edit]
[-] class-bp-core-login-widget.php
[edit]
[-] class-bp-embed.php
[edit]
[-] class-bp-email.php
[edit]
[-] class-bp-core-oembed-extension.php
[edit]
[-] class-bp-walker-nav-menu-checklist.php
[edit]
[-] class-bp-theme-compat.php
[edit]
[-] class-bp-customizer-control-range.php
[edit]
[-] class-bp-recursive-query.php
[edit]
[-] class-bp-user-query.php
[edit]
[-] class-bp-email-recipient.php
[edit]
[-] class-bp-email-delivery.php
[edit]