-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbindusms.php
133 lines (110 loc) · 2.87 KB
/
bindusms.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
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
<?php
/**
* Plugin Name: BinduSms
* Description: BinduSms lets you notify your customers about their WooCommerce order updates via SMS.
* Plugin URI: https://wordpress.org/plugins/bindusms
* Author: BinduSms
* Author URI: https://www.sms.bindulogic.com
* Version: 1.0.0
* License: GPL2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: bindusms
*/
if (!defined('ABSPATH')) {
exit;
}
require_once __DIR__ . '/vendor/autoload.php';
$wc_order_notification_controller = new \BinduSms\BinduSms\Admin\WCOrderNotification();
/**
* The main plugin class
*/
final class BinduSms
{
/**
* Plugin version
*
* @var string
*/
const version = '1.0';
/**
* Class constructor
*/
private function __construct()
{
$this->define_constants();
register_activation_hook(__FILE__, [$this, 'activate']);
add_action('plugins_loaded', [$this, 'init_plugin']);
}
/**
* Initializes a singleton instance
*
* @return BinduSms
*/
public static function init()
{
static $instance = false;
if (!$instance) {
$instance = new self();
}
return $instance;
}
/**
* Define the required plugin constants
*
* @return void
*/
public function define_constants()
{
define('BINDUSMS_VERSION', self::version);
define('BINDUSMS_FILE', __FILE__);
define('BINDUSMS_PATH', __DIR__);
define('BINDUSMS_URL', plugins_url('', BINDUSMS_FILE));
define('BINDUSMS_ASSETS', BINDUSMS_URL . '/assets');
define('BINDUSMS_WC_ORDER_NOTIFICATION_SETTINGS_KEY', 'bindusms_wc_order_notification_settings');
}
/**
* Initialize the plugin
*
* @return void
*/
public function init_plugin()
{
if (is_admin()) {
new BinduSms\BinduSms\Admin();
}
}
/**
* Do stuff upon plugin activation
*
* @return void
*/
public function activate()
{
$installer = new BinduSms\BinduSms\Installer();
$installer->run();
}
}
/**
* Initializes the main plugin
*
* @return BinduSms
*/
function bindusms()
{
return BinduSms::init();
}
add_action('woocommerce_order_status_changed', [$wc_order_notification_controller, 'wc_order_status_change_handler']);
add_action('woocommerce_new_order', [$wc_order_notification_controller, 'send_new_order_notification']);
function bindusms_settings_link($links)
{
$settings_link = array(
'<a href="admin.php?page=bindusms" title="' . __('Settings ', 'bindusms') . '">' . __('Settings', 'bindusms') . '</a>',
);
foreach ($settings_link as $link) {
array_unshift($links, $link);
}
return $links;
}
add_filter("plugin_action_links_" . plugin_basename(__FILE__), 'bindusms_settings_link');
// kick-off the plugin
bindusms();