Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
www
/
wp-content
/
plugins
/
buddypress
/
bp-settings
/
screens
/
Filename :
data.php
back
Copy
<?php /** * Settings: User's "Settings > Export Data" screen handler. * * @package BuddyPress * @subpackage SettingsScreens * @since 4.0.0 */ /** * Show the data settings template. * * @since 4.0.0 */ function bp_settings_screen_data() { if ( bp_action_variables() ) { bp_do_404(); return; } $templates = array( /** * Filters the template file path to use for the data settings screen. * * @since 4.0.0 * * @param string $value Directory path to look in for the template file. */ apply_filters( 'bp_settings_screen_data', 'members/single/settings/data' ), 'members/single/index', ); bp_core_load_template( $templates ); }