| Server IP : 104.21.28.229 / Your IP : 216.73.216.142 Web Server : Apache/2 System : Linux hosting8537.lvs 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : mienphi ( 1014) PHP Version : 8.2.14 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/mienphi/public_html/wp-content/plugins/buddypress/bp-core/deprecated/ |
Upload File : |
<?php
/**
* Deprecated functions.
*
* @package BuddyPress
* @deprecated 10.0.0
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
/**
* Returns the name of the hook to use once a WordPress Site is inserted into the Database.
*
* WordPress 5.1.0 deprecated the `wpmu_new_blog` action. As BuddyPress is supporting WordPress back
* to 4.9.0, this function makes sure we are using the new hook `wp_initialize_site` when the current
* WordPress version is upper or equal to 5.1.0 and that we keep on using `wpmu_new_blog` for earlier
* versions of WordPress.
*
* @since 6.0.0
* @deprecated 10.0.0
*
* @return string The name of the hook to use.
*/
function bp_insert_site_hook() {
_deprecated_function( __FUNCTION__, '10.0.0' );
$wp_hook = 'wpmu_new_blog';
if ( function_exists( 'wp_insert_site' ) ) {
$wp_hook = 'wp_initialize_site';
}
return $wp_hook;
}
/**
* Returns the name of the hook to use once a WordPress Site is deleted.
*
* WordPress 5.1.0 deprecated the `delete_blog` action. As BuddyPress is supporting WordPress back
* to 4.9.0, this function makes sure we are using the new hook `wp_validate_site_deletion` when the
* current WordPress version is upper or equal to 5.1.0 and that we keep on using `delete_blog` for
* earlier versions of WordPress.
*
* @since 6.0.0
* @deprecated 10.0.0
*
* @return string The name of the hook to use.
*/
function bp_delete_site_hook() {
_deprecated_function( __FUNCTION__, '10.0.0' );
$wp_hook = 'delete_blog';
if ( function_exists( 'wp_delete_site' ) ) {
$wp_hook = 'wp_validate_site_deletion';
}
return $wp_hook;
}