-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bonus-plus-wp.php
executable file
·170 lines (151 loc) · 5.5 KB
/
bonus-plus-wp.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
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
160
161
162
163
164
165
166
167
168
169
170
<?php
/**
* Plugin Name: Bonus-Plus-wp
* Plugin URI: https://bonuspluswp.site/
* Description: Интеграция WooCommerce и БонусПлюс. Для отображения данных пользователя используйте шорткод [bpwp_api_customer_bonus_card]
* Author: redmonkey73
* Author URI: https://github.com/evgrezanov/
* Developer: redmonkey73
* Developer URI: https://github.com/evgrezanov/
* Text Domain: bonus-plus-wp
* Domain Path: /languages
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* Playground: https://raw.githubusercontent.com/evgrezanov/bonus-plus-wp/main/blueprints/blueprint.json
* PHP requires at least: 8.1
* WP requires at least: 6.0
* Tested up to: 6.6.1
* Version: 2.22
*/
namespace BPWP;
defined('ABSPATH') || exit; // Exit if accessed directly
class BPWPBonusPlus_Core
{
/**
* Init
*/
public static function init()
{
define('BPWP_PLUGIN_VERSION', '2.22');
define('BPWP_PLUGIN_DIR', plugin_dir_path(__FILE__));
require_once __DIR__ . '/functions.php';
/**
* Add hook for activate plugin
*/
register_activation_hook(__FILE__, function () {
do_action('bpwp_activate');
});
register_deactivation_hook(__FILE__, function () {
do_action('bpwp_deactivate');
});
add_action('plugins_loaded', [__CLASS__, 'bpwp_true_load_plugin_textdomain']);
add_action('plugins_loaded', [__CLASS__, 'bpwp_load_components']);
add_action('bpwp_activate', [__CLASS__, 'bpwp_plugin_activate']);
add_action('bpwp_deactivate', [__CLASS__, 'bpwp_plugin_deactivate']);
add_action('wp_enqueue_scripts', [__CLASS__, 'bpwp_shortcode_wp_enqueue_styles']);
add_filter('plugin_action_links_bonus-plus-wp/bonus-plus-wp.php', [__CLASS__, 'bpwp_add_support_link']);
add_filter('plugin_row_meta', [__CLASS__, 'bpwp_plugin_row_meta'], 10, 2);
}
/**
* Add languages
*
* @return void
*/
public static function bpwp_true_load_plugin_textdomain()
{
load_plugin_textdomain('bonus-plus-wp', false, dirname(plugin_basename(__FILE__)) . '/languages/');
}
/**
* Load components
*
* @return void
*/
public static function bpwp_load_components()
{
if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) {
require_once __DIR__ . '/inc/RestApiEndpoints.php';
require_once __DIR__ . '/inc/WooAccount.php';
require_once __DIR__ . '/inc/ApiHelper.php';
}
require_once __DIR__ . '/inc/MenuSettings.php';
require_once __DIR__ . '/inc/Logger.php';
require_once __DIR__ . '/inc/ClientProfile.php';
require_once __DIR__ . '/inc/WooProductCatExport.php';
require_once __DIR__ . '/inc/CustomerBalance.php';
require_once __DIR__ . '/inc/PhoneRegistration.php';
}
/**
* Register styles for bonus card widget
*
* @return void
*/
public static function bpwp_shortcode_wp_enqueue_styles()
{
wp_register_style(
'bpwp-bonus-card-style',
plugins_url('/assets/qrcodejs/style.css', __FILE__),
[],
BPWP_PLUGIN_VERSION,
'all'
);
wp_register_style(
'bpwp-bonus-loader-style',
plugins_url('/assets/loader.css', __FILE__),
[],
BPWP_PLUGIN_VERSION,
'all'
);
wp_register_style(
'bpwp-user-qr-card-style',
plugins_url('/assets/qrcard.css', __FILE__),
[],
BPWP_PLUGIN_VERSION,
'all'
);
}
/**
* Action fire at plugin activation
*
* @return array
*/
public static function bpwp_plugin_activate()
{
flush_rewrite_rules();
update_option('bpwp_plugin_permalinks_flushed', 0);
}
/**
* Action fire at plugin deactivation
*
* @return array
*/
public static function bpwp_plugin_deactivate()
{
flush_rewrite_rules();
}
/**
* Добавляет ссылку на страницу поддержки на странице плагинов.
*
* @param array $links Существующие ссылки.
* @return array Модифицированный массив ссылок.
*/
public static function bpwp_add_support_link($links) {
$support_link = '<a href="https://bonuspluswp.site/request/" target="_blank" style="color: green; font-weight: bold;">' . __('Нужна помошь', 'bonus-plus-wp') . '</a>';
array_push($links, $support_link);
return $links;
}
/**
* Добавляет ссылку на страницу документации в мета-данные плагина.
*
* @param array $links Существующие ссылки.
* @param string $file Путь к файлу плагина.
* @return array Модифицированный массив ссылок.
*/
public static function bpwp_plugin_row_meta($links, $file) {
if ($file == 'bonus-plus-wp/bonus-plus-wp.php') {
$support_link = '<a href="https://bonuspluswp.site/category/docs/" target="_blank" font-weight: bold;">' . __('Документация', 'bonus-plus-wp') . '</a>';
$links[] = $support_link;
}
return $links;
}
}
BPWPBonusPlus_Core::init();