File: /storage/v6964/mangomitra/public_html/wp-content/plugins/buddypress/bp-core/deprecated/10.0.php
<?php
/**
* Deprecated functions.
*
* @package BuddyPress
* @deprecated 10.0.0
*/
// Exit if accessed directly.
if ( ! 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;
}