You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
754 B
PHP

<?php
/**
* Interface SiteRemovalAware.
*
* @link https://github.com/googleforcreators/web-stories-wp
*
* @copyright 2021 Google LLC
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
*/
declare(strict_types = 1);
namespace Google\Web_Stories\Infrastructure;
use WP_Site;
/**
* Something that acts on site removal on Multisite.
*
* By tagging a service with this interface, the system will automatically hook
* it up to the 'wp_validate_site_deletion' WordPress action.
*
* @internal
*
* @since 1.11.0
*/
interface SiteRemovalAware {
/**
* Act on site removal.
*
* @since 1.11.0
*
* @param WP_Site $site The site being removed.
*/
public function on_site_removal( WP_Site $site ): void;
}