- WordPress 6.9.4 (es_ES) with Kadence theme - Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto - Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold - Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI) - Plugins: Kadence Blocks, Polylang, Contact Form 7 - Custom CSS with full brand styling and responsive layout - HTTPS enforced via wp-config.php proxy detection
40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php declare( strict_types=1 );
|
|
|
|
namespace KadenceWP\KadenceBlocks\Shutdown;
|
|
|
|
use KadenceWP\KadenceBlocks\Cache\Ai_Cache;
|
|
use KadenceWP\KadenceBlocks\Cache\Block_Library_Cache;
|
|
use KadenceWP\KadenceBlocks\Image_Downloader\Cache_Primer;
|
|
use KadenceWP\KadenceBlocks\StellarWP\ProphecyMonorepo\Container\Contracts\Provider;
|
|
|
|
final class Shutdown_Provider extends Provider {
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function register(): void {
|
|
$this->container->when( Shutdown_Collection::class )
|
|
->needs( '$tasks' )
|
|
->give(
|
|
[
|
|
// Add any terminable tasks to the collection to run on shutdown.
|
|
// Important: these will run in the order provided.
|
|
$this->container->get( Cache_Primer::class ),
|
|
$this->container->get( Block_Library_Cache::class ),
|
|
$this->container->get( Ai_Cache::class ),
|
|
]
|
|
);
|
|
|
|
// Don't register shutdown hooks if we're uninstalling or WordPress is installing.
|
|
if ( defined( 'WP_UNINSTALL_PLUGIN' ) || wp_installing() ) {
|
|
return;
|
|
}
|
|
|
|
add_action(
|
|
'shutdown',
|
|
$this->container->callback( Shutdown_Handler::class, 'handle' ),
|
|
1
|
|
);
|
|
}
|
|
}
|