-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbea_sender.php
More file actions
159 lines (137 loc) · 3.67 KB
/
bea_sender.php
File metadata and controls
159 lines (137 loc) · 3.67 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php
/*
Plugin Name: BeApi - Sender
Description: Register email campaigns and send them trough a CRON
Author: BeApi
Domain Path: /languages/
Text Domain: bea_sender
Version: 1.4.5
*/
// Database declarations
global $wpdb;
$wpdb->bea_s_campaigns = $wpdb->prefix . 'bea_s_campaigns';
$wpdb->bea_s_receivers = $wpdb->prefix . 'bea_s_receivers';
$wpdb->bea_s_re_ca = $wpdb->prefix . 'bea_s_re_ca';
$wpdb->bea_s_contents = $wpdb->prefix . 'bea_s_contents';
$wpdb->bea_s_attachments = $wpdb->prefix . 'bea_s_attachments';
// Add tables to the index of tables for WordPress
$wpdb->tables[] = 'bea_s_campaigns';
$wpdb->tables[] = 'bea_s_receivers';
$wpdb->tables[] = 'bea_s_re_ca';
$wpdb->tables[] = 'bea_s_contents';
define( 'BEA_SENDER_URL', plugin_dir_url( __FILE__ ) );
define( 'BEA_SENDER_DIR', plugin_dir_path( __FILE__ ) );
define( 'BEA_SENDER_VER', '1.4.5' );
define( 'BEA_SENDER_PPP', '10' );
define( 'BEA_SENDER_DEFAULT_COUNTER', 100 );
define( 'BEA_SENDER_OPTION_NAME', 'bea_s-main' );
define( 'BEA_SENDER_EXPORT_OPTION_NAME', 'bea_s-export' );
/**
* Whether Sender cron jobs write Bea_Log files under WP_CONTENT_DIR.
*
* Disable with `define( 'BEA_SENDER_FILE_LOGGING', false );` in wp-config.php,
* or `add_filter( 'bea_sender_file_logging_enabled', '__return_false' );`.
*
* @return bool
*/
function bea_sender_is_file_logging_enabled() {
if ( defined( 'BEA_SENDER_FILE_LOGGING' ) ) {
return (bool) BEA_SENDER_FILE_LOGGING;
}
return (bool) apply_filters( 'bea_sender_file_logging_enabled', true );
}
// Function for easy load files
function _bea_sender_load_files( $dir, $files, $prefix = '' ) {
foreach ( $files as $file ) {
if ( is_file( $dir . $prefix . $file . '.php' ) ) {
require_once $dir . $prefix . $file . '.php';
}
}
}
// Utils
_bea_sender_load_files(
BEA_SENDER_DIR . 'inc/utils/',
array(
'campaign',
'content',
'attachment',
'receiver',
'sender',
'bounce.email',
'export',
'receivers',
),
'class.'
);
// Admin
if ( is_admin() ) {
if ( ! class_exists( 'WP_List_Table' ) ) {
require ABSPATH . '/wp-admin/includes/class-wp-list-table.php';
}
_bea_sender_load_files( BEA_SENDER_DIR . 'inc/', array( 'admin' ), 'class.' );
_bea_sender_load_files(
BEA_SENDER_DIR . 'inc/utils/',
array(
'admin.table',
'admin.table.single',
'admin.bounce.tools',
),
'class.'
);
}
// Inc
_bea_sender_load_files(
BEA_SENDER_DIR . 'inc/',
array(
'client',
'cron',
),
'class.'
);
// Libs
_bea_sender_load_files(
BEA_SENDER_DIR . 'inc/libs/wordpress-settings-api/',
array(
'settings-api',
),
'class.'
);
_bea_sender_load_files(
BEA_SENDER_DIR . 'inc/libs/php-bounce/',
array(
'phpmailer-bmh',
),
'class.'
);
_bea_sender_load_files(
BEA_SENDER_DIR . 'inc/libs/',
array(
'log',
),
'class-'
);
// Create tables on activation
register_activation_hook( __FILE__, array( 'Bea_Sender_Client', 'activation' ) );
register_uninstall_hook( __FILE__, array( 'Bea_Sender_Client', 'uninstall' ) );
add_action( 'plugins_loaded', 'Bea_sender_init' );
function Bea_sender_init() {
global $bea_sender, $bea_send_counter;
$bea_send_counter = apply_filters( 'bea_send_counter', BEA_SENDER_DEFAULT_COUNTER );
$bea_sender['client'] = new Bea_Sender_Client();
new Bea_Sender_Cron();
if ( is_admin() ) {
$bea_sender['admin'] = new Bea_Sender_Admin();
$bea_sender['admin_bounce_tools'] = new BEA_Admin_Settings_Main();
}
if ( defined( 'WP_CLI' ) ) {
_bea_sender_load_files(
BEA_SENDER_DIR . 'inc/cli/',
array(
'sender-command',
),
'class.'
);
\WP_CLI::add_command( 'bea-sender-mail', Bea_Sender_Command::class );
}
add_action( 'bea_sender_register_send', array( $bea_sender['client'], 'registerCampaign' ), 99, 4 );
}