[ Index ] |
PHP Cross Reference of BuddyPress |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Settings: User's "Settings > Export Data" screen handler. 4 * 5 * @package BuddyPress 6 * @subpackage SettingsScreens 7 * @since 4.0.0 8 */ 9 10 /** 11 * Show the data settings template. 12 * 13 * @since 4.0.0 14 */ 15 function bp_settings_screen_data() { 16 17 if ( bp_action_variables() ) { 18 bp_do_404(); 19 return; 20 } 21 22 /** 23 * Filters the template file path to use for the data settings screen. 24 * 25 * @since 4.0.0 26 * 27 * @param string $value Directory path to look in for the template file. 28 */ 29 bp_core_load_template( apply_filters( 'bp_settings_screen_data', 'members/single/settings/data' ) ); 30 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 22 01:00:56 2024 | Cross-referenced by PHPXref 0.7.1 |