-
Notifications
You must be signed in to change notification settings - Fork 1
/
digest.php
70 lines (61 loc) · 2.32 KB
/
digest.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
60
61
62
63
64
65
66
67
68
69
70
<?php
/**
* Plugin Name: Digest Notifications
* Plugin URI: https://required.com/services/wordpress-plugins/digest-notifications/
* Description: Get a daily, weekly, or monthly digest of what's happening on your site instead of receiving a single email each time.
* Version: 3.0.0
* Requires at least: 6.0
* Requires PHP: 7.4
* Author: required
* Author URI: https://required.com
* License: GPLv2+
* Text Domain: digest
*/
/**
* Copyright (c) 2015-2023 required (email : support@required.ch)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2 or, at
* your discretion, any later version, as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
defined( 'ABSPATH' ) || die;
// phpcs:disable Generic.Arrays.DisallowLongArraySyntax -- File needs to be parsable by PHP 5.2.4.
if ( file_exists( dirname( __FILE__ ) . '/vendor/autoload.php' ) ) {
include dirname( __FILE__ ) . '/vendor/autoload.php';
}
if ( ! class_exists( 'Required\\Digest\\Plugin' ) ) {
// phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_trigger_error
trigger_error(
sprintf(
'%s does not exist. Check Composer\'s autoloader.',
'Required\\Digest\\Plugin'
)
);
return;
}
// phpcs:ignore WordPress.NamingConventions -- Variable gets unset.
$requirements_check = new WP_Requirements_Check(
array(
'title' => __( 'Digest Notifications', 'digest' ),
'php' => '7.4',
'wp' => '6.0',
'file' => __FILE__,
)
);
if ( $requirements_check->passes() ) {
require_once dirname( __FILE__ ) . '/template-tags/pluggable.php';
require_once dirname( __FILE__ ) . '/template-tags/functions.php';
require_once dirname( __FILE__ ) . '/inc/namespace.php';
add_action( 'plugins_loaded', 'Required\\Digest\\bootstrap' );
}
unset( $requirements_check );