mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-06-01 05:49:21 +08:00
* General code clean-up. * php5ize the loader. * Remove closing php tags. * Limit creation of one-time-use variables. * Bail early instead of wrap in big if statements. git-svn-id: https://buddypress.svn.wordpress.org/trunk@6317 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
81 lines
1.6 KiB
PHP
81 lines
1.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* BuddyPress Settings Screens
|
|
*
|
|
* @package BuddyPress
|
|
* @subpackage SettingsScreens
|
|
*/
|
|
|
|
// Exit if accessed directly
|
|
if ( !defined( 'ABSPATH' ) ) exit;
|
|
|
|
/**
|
|
* Show the general settings template
|
|
*
|
|
* @since BuddyPress (1.5)
|
|
*
|
|
* @return If we shouldn't be here
|
|
*/
|
|
function bp_settings_screen_general() {
|
|
|
|
if ( bp_action_variables() ) {
|
|
bp_do_404();
|
|
return;
|
|
}
|
|
|
|
bp_core_load_template( apply_filters( 'bp_settings_screen_general_settings', 'members/single/settings/general' ) );
|
|
}
|
|
|
|
/**
|
|
* Show the notifications settings template
|
|
*
|
|
* @since BuddyPress (1.5)
|
|
*
|
|
* @return If we shouldn't be here
|
|
*/
|
|
function bp_settings_screen_notification() {
|
|
|
|
if ( bp_action_variables() ) {
|
|
bp_do_404();
|
|
return;
|
|
}
|
|
|
|
bp_core_load_template( apply_filters( 'bp_settings_screen_notification_settings', 'members/single/settings/notifications' ) );
|
|
}
|
|
|
|
/**
|
|
* Show the delete-account settings template
|
|
*
|
|
* @since BuddyPress (1.5)
|
|
*
|
|
* @return If we shouldn't be here
|
|
*/
|
|
function bp_settings_screen_delete_account() {
|
|
|
|
if ( bp_action_variables() ) {
|
|
bp_do_404();
|
|
return;
|
|
}
|
|
|
|
// Load the template
|
|
bp_core_load_template( apply_filters( 'bp_settings_screen_delete_account', 'members/single/settings/delete-account' ) );
|
|
}
|
|
|
|
/**
|
|
* Show the capabilities settings template
|
|
*
|
|
* @since BuddyPress (1.6)
|
|
*
|
|
* @return If we shouldn't be here
|
|
*/
|
|
function bp_settings_screen_capabilities() {
|
|
|
|
if ( bp_action_variables() ) {
|
|
bp_do_404();
|
|
return;
|
|
}
|
|
|
|
// Load the template
|
|
bp_core_load_template( apply_filters( 'bp_settings_screen_capabilities', 'members/single/settings/capabilities' ) );
|
|
}
|