generated from alleyinteractive/create-wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwp-404-caching.php
59 lines (53 loc) · 1.57 KB
/
wp-404-caching.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
* Plugin Name: WP 404 Caching
* Plugin URI: https://github.com/alleyinteractive/wp-404-caching
* Description: Full Page Cache for WordPress 404s
* Version: 1.0.3
* Author: Alley
* Author URI: https://github.com/alleyinteractive/wp-404-caching
* Requires at least: 6.3
* Tested up to: 6.4
*
* Text Domain: wp-404-caching
* Domain Path: /languages/
*
* @package wp-404-caching
*/
namespace Alley\WP\WP_404_Caching;
use Alley\WP\WP_404_Caching\Features\Full_Page_Cache_404;
use Composer\InstalledVersions;
use function add_action;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Check if Composer is installed (remove if Composer is not required for your plugin).
if ( ! file_exists( __DIR__ . '/vendor/wordpress-autoload.php' ) ) {
// Will also check for the presence of an already loaded Composer autoloader
// to see if the Composer dependencies have been installed in a parent
// folder. This is useful for when the plugin is loaded as a Composer
// dependency in a larger project.
if ( ! class_exists( InstalledVersions::class ) ) {
add_action(
'admin_notices',
function () {
?>
<div class="notice notice-error">
<p><?php esc_html_e( 'Composer is not installed and wp-404-caching cannot load. Try using a `*-built` branch if the plugin is being loaded as a submodule.', 'wp-404-caching' ); ?></p>
</div>
<?php
}
);
return;
}
} else {
// Load Composer dependencies.
require_once __DIR__ . '/vendor/wordpress-autoload.php';
}
/**
* Instantiate the plugin.
*/
function main(): void {
( new Full_Page_Cache_404() )->boot();
}
main();