PluginProbe
YayMail – WooCommerce Email Customizer / 3.4
YayMail – WooCommerce Email Customizer v3.4
4.4.4 4.4.3 4.4.2 4.4.1 trunk 1.9.6 2.1.4 2.1.5 3.2.2 3.2.6 3.2.7.1 3.2.8.1 3.2.9 3.3 3.3.1 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.4 3.4.1 3.4.2 3.4.3 All 55 releases
yaymail / includes / Page / Settings.php

Settings.php in YayMail – WooCommerce Email Customizer 3.4, at includes/Page/Settings.php

680 lines 29.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace YayMail\Page;
4
5 use stdClass;
6 use YayMail\Ajax;
7 use YayMail\Page\Source\CustomPostType;
8 use YayMail\Page\Source\DefaultElement;
9 use YayMail\Templates\Templates;
10 use YayMail\I18n;
11 use YayMail\Helper\Helper;
12 use YayMail\Helper\PluginSupported;
13
14
15 defined( 'ABSPATH' ) || exit;
16 /**
17 * Settings Page
18 */
19 class Settings {
20
21 protected static $instance = null;
22
23 public static function getInstance() {
24 if ( null == self::$instance ) {
25 self::$instance = new self();
26 self::$instance->doHooks();
27 }
28
29 return self::$instance;
30 }
31
32 private $pageId = null;
33 private $templateAccount;
34 private $emails = null;
35 public function doHooks() {
36 $this->templateAccount = array( 'customer_new_account', 'customer_new_account_activation', 'customer_reset_password' );
37
38 // Register Custom Post Type use Email Builder
39 add_action( 'init', array( $this, 'registerCustomPostType' ) );
40
41 // Register Menu
42 add_action( 'admin_menu', array( $this, 'settingsMenu' ), YAYMAIL_MENU_PRIORITY );
43
44 // Register Style & Script use for Menu Backend
45 add_action( 'admin_enqueue_scripts', array( $this, 'enqueueAdminScripts' ) );
46
47 add_filter( 'plugin_action_links_' . YAYMAIL_PLUGIN_BASENAME, array( $this, 'plugin_action_links' ) );
48
49 add_filter( 'plugin_row_meta', array( $this, 'add_support_and_docs_links' ), 10, 2 );
50
51 // free version
52 $optionNotice = get_option( 'yaymail_notice' );
53 if ( time() >= (int) $optionNotice ) {
54 add_action( 'admin_notices', array( $this, 'renderNotice' ) );
55 }
56
57 // Ajax display notive
58 add_action( 'wp_ajax_yaymail_notice', array( $this, 'yaymailNotice' ) );
59
60 // Add Woocommerce email setting columns
61 add_filter( 'woocommerce_email_setting_columns', array( $this, 'yaymail_email_setting_columns' ) );
62 add_action( 'woocommerce_email_setting_column_template', array( $this, 'column_template' ) );
63
64 // Add WP_Query argument to search either by post_title or meta_value
65 add_action(
66 'pre_get_posts',
67 array( $this, 'search_by_meta_value_or_post_title' )
68 );
69
70 // Excute Ajax
71 Ajax::getInstance();
72 }
73 public function __construct() {}
74
75 public function yaymail_email_setting_columns( $array ) {
76 if ( isset( $array['actions'] ) ) {
77 unset( $array['actions'] );
78 return array_merge(
79 $array,
80 array(
81 'template' => '',
82 'actions' => '',
83 )
84 );
85 }
86 return $array;
87 }
88 public function column_template( $email ) {
89 $email_id = $email->id;
90 if ( 'yith-coupon-email-system' === $email->id ) {
91 if ( class_exists( 'YayMailYITHWooCouponEmailSystem\templateDefault\DefaultCouponEmailSystem' ) ) {
92 $email_id = 'YWCES_register';
93 }
94 }
95 echo '<td class="wc-email-settings-table-template">
96 <a class="button alignright" target="_blank" href="' . esc_attr( admin_url( 'admin.php?page=yaymail-settings' ) ) . '&template=' . esc_attr( $email_id ) . '">' . esc_html( __( 'Customize with YayMail', 'yaymail' ) ) . '</a></td>';
97 }
98
99 public function renderNotice() {
100
101 include YAYMAIL_PLUGIN_PATH . '/includes/Page/Source/DisplayAddonNotice.php';
102 }
103
104 public function yaymailNotice() {
105 if ( isset( $_POST ) ) {
106 $nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( $_POST['nonce'] ) : null;
107
108 if ( ! wp_verify_nonce( $nonce, 'yaymail_nonce' ) ) {
109 wp_send_json_error( array( 'status' => 'Wrong nonce validate!' ) );
110 exit();
111 }
112 update_option( 'yaymail_notice', time() + 60 * 60 * 24 * 60 ); // After 60 days show
113 wp_send_json_success();
114 }
115 wp_send_json_error( array( 'message' => 'Update fail!' ) );
116 }
117
118 public function plugin_action_links( $links ) {
119 $action_links = array(
120 'settings' => '<a href="' . admin_url( 'admin.php?page=yaymail-settings' ) . '" aria-label="' . esc_attr__( 'View WooCommerce Email Builder', 'yaymail' ) . '">' . esc_html__( 'Start Customizing', 'yaymail' ) . '</a>',
121 );
122 $links[] = '<a target="_blank" href="https://yaycommerce.com/yaymail-woocommerce-email-customizer/" style="color: #43B854; font-weight: bold">' . __( 'Go Pro', 'yaymail' ) . '</a>';
123 return array_merge( $action_links, $links );
124 }
125
126 public function add_support_and_docs_links( $plugin_meta, $plugin_file ) {
127 if ( YAYMAIL_PLUGIN_BASENAME === $plugin_file ) {
128 $plugin_meta[] = '<a target="_blank" href="https://docs.yaycommerce.com/yaymail/getting-started/introduction">Docs</a>';
129 $plugin_meta[] = '<a target="_blank" href="https://yaycommerce.com/support/">Support</a>';
130 }
131 return $plugin_meta;
132 }
133
134 public function registerCustomPostType() {
135 $labels = array(
136 'name' => __( 'Email Template', 'yaymail' ),
137 'singular_name' => __( 'Email Template', 'yaymail' ),
138 'add_new' => __( 'Add New Email Template', 'yaymail' ),
139 'add_new_item' => __( 'Add a new Email Template', 'yaymail' ),
140 'edit_item' => __( 'Edit Email Template', 'yaymail' ),
141 'new_item' => __( 'New Email Template', 'yaymail' ),
142 'view_item' => __( 'View Email Template', 'yaymail' ),
143 'search_items' => __( 'Search Email Template', 'yaymail' ),
144 'not_found' => __( 'No Email Template found', 'yaymail' ),
145 'not_found_in_trash' => __( 'No Email Template currently trashed', 'yaymail' ),
146 'parent_item_colon' => '',
147 );
148 $capabilities = array();
149 $args = array(
150 'labels' => $labels,
151 'public' => true,
152 'publicly_queryable' => true,
153 'show_ui' => false,
154 'query_var' => true,
155 'rewrite' => true,
156 'capability_type' => 'yaymail_template',
157 'capabilities' => $capabilities,
158 'hierarchical' => false,
159 'menu_position' => null,
160 'exclude_from_search' => true,
161 'publicly_queryable' => false,
162 'supports' => array( 'title', 'author', 'thumbnail' ),
163 );
164 register_post_type( 'yaymail_template', $args );
165 }
166 public function settingsMenu() {
167 add_submenu_page( 'yaycommerce', __( 'Email Builder Settings', 'yaymail' ), __( 'YayMail', 'yaymail' ), 'manage_woocommerce', $this->getPageId(), array( $this, 'settingsPage' ), 0 );
168 }
169
170 public function nitWebPluginRegisterButtons( $buttons ) {
171 $buttons[] = 'table';
172 $buttons[] = 'searchreplace';
173 $buttons[] = 'visualblocks';
174 $buttons[] = 'code';
175 $buttons[] = 'insertdatetime';
176 $buttons[] = 'autolink';
177 $buttons[] = 'contextmenu';
178 $buttons[] = 'advlist';
179 return $buttons;
180 }
181
182 public function njtWebPluginRegisterPlugin( $plugin_array ) {
183 $plugin_array['table'] = YAYMAIL_PLUGIN_URL . 'assets/tinymce/table/plugin.min.js';
184 $plugin_array['searchreplace'] = YAYMAIL_PLUGIN_URL . 'assets/tinymce/searchreplace/plugin.min.js';
185 $plugin_array['visualblocks'] = YAYMAIL_PLUGIN_URL . 'assets/tinymce/visualblocks/plugin.min.js';
186 $plugin_array['code'] = YAYMAIL_PLUGIN_URL . 'assets/tinymce/code/plugin.min.js';
187 $plugin_array['insertdatetime'] = YAYMAIL_PLUGIN_URL . 'assets/tinymce/insertdatetime/plugin.min.js';
188 $plugin_array['autolink'] = YAYMAIL_PLUGIN_URL . 'assets/tinymce/autolink/plugin.min.js';
189 $plugin_array['contextmenu'] = YAYMAIL_PLUGIN_URL . 'assets/tinymce/contextmenu/plugin.min.js';
190 $plugin_array['advlist'] = YAYMAIL_PLUGIN_URL . 'assets/tinymce/advlist/plugin.min.js';
191 return $plugin_array;
192 }
193
194 public function settingsPage() {
195 // When load this page will not show adminbar
196 ?>
197 <style type="text/css">
198 #wpcontent, #footer {opacity: 0}
199 #adminmenuback, #adminmenuwrap { display: none !important; }
200 </style>
201 <script type="text/javascript" id="yaymail-onload">
202 jQuery(document).ready( function() {
203 jQuery('#adminmenuback, #adminmenuwrap').remove();
204 });
205 </script>
206 <?php
207 // add new buttons
208 add_filter( 'mce_buttons', array( $this, 'nitWebPluginRegisterButtons' ) );
209
210 // Load the TinyMCE plugin
211 add_filter( 'mce_external_plugins', array( $this, 'njtWebPluginRegisterPlugin' ) );
212 $viewPath = YAYMAIL_PLUGIN_PATH . 'views/pages/html-settings.php';
213 include_once $viewPath;
214 }
215
216 public function enqueueAdminScripts( $screenId ) {
217 if ( class_exists( 'SitePress' ) ) {
218 global $sitepress_settings, $sitepress;
219 $custom_posts_sync = $sitepress_settings['custom_posts_sync_option'];
220 $custom_posts_sync['yaymail_template'] = 0;
221 $sitepress->set_setting( 'custom_posts_sync_option', $custom_posts_sync, true );
222 }
223 if ( class_exists( 'Polylang' ) ) {
224 $polylang_options = get_option( 'polylang' );
225 if ( isset( $polylang_options['post_types'] ) ) {
226 $yaymail_template_position = array_search( 'yaymail_template', $polylang_options['post_types'] );
227 if ( false !== $yaymail_template_position ) {
228 $polylang_options['post_types'] = array_splice( $polylang_options['post_types'], $yaymail_template_position + 1, 1 );
229 update_option( 'polylang', $polylang_options );
230 }
231 }
232 }
233 if ( strpos( $screenId, 'yaymail-settings' ) !== false && class_exists( 'WC_Emails' ) ) {
234 // Filter to active tinymce
235 add_filter( 'user_can_richedit', '__return_true', PHP_INT_MAX );
236 // Get list template from Woo
237 $wc_emails = \WC_Emails::instance();
238 $this->emails = (array) $wc_emails::instance()->emails;
239 unset( $this->emails['WC_TrackShip_Email_Manager'] );
240 unset( $this->emails['xoo_uv_verification']->content_html_args );
241 if ( isset( $this->emails['WC_GZD_Email_Customer_Shipment'] ) ) {
242 $partial_email = new stdClass();
243 $partial_email->id = 'customer_partial_shipment';
244 $partial_email->title = 'Order partial shipped';
245 $customer_shipment_position = array_search( 'WC_GZD_Email_Customer_Shipment', array_keys( $this->emails ) );
246 $this->emails = array_merge(
247 array_slice( $this->emails, 0, $customer_shipment_position ),
248 array( 'WC_GZD_Email_Customer_Partial_Shipment' => $partial_email ),
249 array_slice( $this->emails, $customer_shipment_position )
250 );
251 }
252 if ( class_exists( 'AW_Referrals_Plugin_Data' ) && ( is_plugin_active( 'yaymail-addon-for-automatewoo/yaymail-automatewoo.php' ) || is_plugin_active( 'email-customizer-automatewoo/yaymail-automatewoo.php' ) ) ) {
253 $referrals_email = new stdClass();
254 $referrals_email->id = 'AutomateWoo_Referrals_Email';
255 $referrals_email->title = __( 'AutomateWoo Referrals Email', 'yaymail' );
256 $this->emails = array_merge( $this->emails, array( 'AutomateWoo_Referrals_Email' => $referrals_email ) );
257 }
258 // Insert database all order template from Woo
259 $templateEmail = Templates::getInstance();
260 $templates = $templateEmail::getList();
261
262 foreach ( $templates as $key => $template ) {
263 if ( ! CustomPostType::postIDByTemplate( $key ) ) {
264 $arr = array(
265 'mess' => '',
266 'post_date' => current_time( 'Y-m-d H:i:s' ),
267 'post_type' => 'yaymail_template',
268 'post_status' => 'publish',
269 '_yaymail_template' => $key,
270 '_email_backgroundColor_settings' => 'rgb(236, 236, 236)',
271 '_yaymail_elements' => json_decode( $template['elements'], true ),
272
273 );
274 $insert = CustomPostType::insert( $arr );
275 }
276 }
277
278 /*
279 @@@@ Enable Disable
280 @@@@ note: Note the default value section is required when displaying in vue
281 */
282
283 $settingDefaultEnableDisable = array(
284 'new_order' => 1,
285 'cancelled_order' => 1,
286 'failed_order' => 1,
287 'customer_on_hold_order' => 1,
288 'customer_processing_order' => 1,
289 'customer_completed_order' => 1,
290 'customer_refunded_order' => 1,
291 'customer_invoice' => 0,
292 'customer_note' => 0,
293 'customer_reset_password' => 0,
294 'customer_new_account' => 0,
295 );
296
297 $settingEnableDisables = ( CustomPostType::templateEnableDisable( false ) ) ? CustomPostType::templateEnableDisable( false ) : $settingDefaultEnableDisable;
298
299 foreach ( $this->emails as $key => $value ) {
300 if ( 'ORDDD_Email_Delivery_Reminder' == $key ) {
301 $value->id = 'orddd_delivery_reminder_customer';
302 }
303 if ( 'WCVendors_Admin_Notify_Approved' == $key ) {
304 $value->id = 'admin_notify_approved';
305 }
306 if ( ! array_key_exists( $value->id, $settingEnableDisables ) ) {
307 $settingEnableDisables[ $value->id ] = '0';
308 }
309 }
310
311 $this->emails = apply_filters( 'YaymailCreateFollowUpTemplates', $this->emails );
312 $settingEnableDisables = apply_filters( 'YaymailCreateSelectFollowUpTemplates', $settingEnableDisables );
313
314 $this->emails = apply_filters( 'YaymailCreateAutomateWooTemplates', $this->emails );
315 $settingEnableDisables = apply_filters( 'YaymailCreateSelectAutomateWooTemplates', $settingEnableDisables );
316
317 $this->emails = apply_filters( 'YaymailCreateTrackShipWooTemplates', $this->emails );
318 $settingEnableDisables = apply_filters( 'YaymailCreateSelectTrackShipWooTemplates', $settingEnableDisables );
319
320 $this->emails = apply_filters( 'YaymailCreateWCFMWooFMTemplates', $this->emails );
321 $settingEnableDisables = apply_filters( 'YaymailCreateSelectWCFMWooFMTemplates', $settingEnableDisables );
322
323 $this->emails = apply_filters( 'YaymailCreateGermanMarketTemplates', $this->emails );
324
325 $this->emails = apply_filters( 'YaymailCreateListYWCESTemplates', $this->emails );
326 $settingEnableDisables = apply_filters( 'YaymailCreateSelectYWCESTemplates', $settingEnableDisables );
327
328 $this->emails = apply_filters( 'YaymailCreateWcCartAbandonmentRecoveryTemplates', $this->emails );
329 $settingEnableDisables = apply_filters( 'YaymailCreateSelectWcCartAbandonmentRecoveryTemplates', $settingEnableDisables );
330
331 $this->emails = apply_filters( 'YaymailCreateB2BMarketTemplates', $this->emails );
332 $settingEnableDisables = apply_filters( 'YaymailCreateSelectB2BMarketTemplates', $settingEnableDisables );
333
334 $this->emails = apply_filters( 'YaymailCreateShopMagicTemplates', $this->emails );
335 $settingEnableDisables = apply_filters( 'YaymailCreateSelectShopMagicTemplates', $settingEnableDisables );
336
337 $settingDefaultGenerals = array(
338 'payment' => 2,
339 'product_image' => 0,
340 'image_size' => 'thumbnail',
341 'image_width' => '30px',
342 'image_height' => '30px',
343 'product_sku' => 1,
344 'product_des' => 0,
345 'product_hyper_links' => 0,
346 'product_regular_price' => 0,
347 'product_item_cost' => 0,
348 'background_color_table_items' => '#e5e5e5',
349 'content_items_color' => '#636363',
350 'title_items_color' => '#7f54b3',
351 'container_width' => '605px',
352 'order_url' => '',
353 'custom_css' => '',
354 'enable_css_custom' => 'no',
355 'image_position' => 'Top',
356 );
357 $settingGenerals = get_option( 'yaymail_settings' ) ? get_option( 'yaymail_settings' ) : $settingDefaultGenerals;
358 foreach ( $settingDefaultEnableDisable as $keyDefaultEnableDisable => $settingDefaultEnableDisable ) {
359 if ( ! array_key_exists( $keyDefaultEnableDisable, $settingEnableDisables ) ) {
360 $settingEnableDisables[ $keyDefaultEnableDisable ] = $settingDefaultEnableDisable;
361 };
362 }
363 $settings['enableDisable'] = $settingEnableDisables;
364
365 /*
366 @@@@ General
367 @@@@ note: Note the default value section is required when displaying in vue
368 */
369
370 $settingGenerals = get_option( 'yaymail_settings' ) ? get_option( 'yaymail_settings' ) : $settingDefaultGenerals;
371 foreach ( $settingDefaultGenerals as $keyDefaultGeneral => $settingGeneral ) {
372 if ( ! array_key_exists( $keyDefaultGeneral, $settingGenerals ) ) {
373 $settingGenerals[ $keyDefaultGeneral ] = $settingDefaultGenerals[ $keyDefaultGeneral ];
374 };
375 }
376
377 $settingGenerals['direction_rtl'] = get_option( 'yaymail_direction' ) ? get_option( 'yaymail_direction' ) : 'ltr';
378 $settings['general'] = $settingGenerals;
379
380 $scriptId = $this->getPageId();
381 $order = CustomPostType::getListOrders();
382
383 wp_deregister_script( 'vue' );
384 wp_deregister_script( 'vuex' );
385
386 wp_enqueue_script( 'vue', YAYMAIL_PLUGIN_URL . ( YAYMAIL_DEBUG ? 'assets/libs/vue.js' : 'assets/libs/vue.min.js' ), '', YAYMAIL_VERSION, true );
387 wp_enqueue_script( 'vuex', YAYMAIL_PLUGIN_URL . 'assets/libs/vuex.js', '', YAYMAIL_VERSION, true );
388
389 wp_enqueue_script( $scriptId, YAYMAIL_PLUGIN_URL . 'assets/dist/js/main.js', array( 'jquery' ), YAYMAIL_VERSION, true );
390 wp_enqueue_style( $scriptId, YAYMAIL_PLUGIN_URL . 'assets/dist/css/main.css', array(), YAYMAIL_VERSION );
391
392 wp_enqueue_script( $scriptId . '-script', YAYMAIL_PLUGIN_URL . 'assets/admin/js/script.js', '', YAYMAIL_VERSION, true );
393 wp_enqueue_script( $scriptId . '-plugin-install', YAYMAIL_PLUGIN_URL . 'assets/admin/js/plugin-install.js', '', YAYMAIL_VERSION, true );
394 $yaymailSettings = get_option( 'yaymail_settings' );
395
396 // Load ACE Editor -Start
397 if ( isset( $yaymailSettings['enable_css_custom'] ) && 'yes' == $yaymailSettings['enable_css_custom'] ) {
398 wp_enqueue_script( $scriptId . 'ace-script', YAYMAIL_PLUGIN_URL . 'assets/aceeditor/ace.js', '', YAYMAIL_VERSION, true );
399 wp_enqueue_script( $scriptId . 'ace1-script', YAYMAIL_PLUGIN_URL . 'assets/aceeditor/ext-language_tools.js', '', YAYMAIL_VERSION, true );
400 wp_enqueue_script( $scriptId . 'ace2-script', YAYMAIL_PLUGIN_URL . 'assets/aceeditor/mode-css.js', '', YAYMAIL_VERSION, true );
401 wp_enqueue_script( $scriptId . 'ace3-script', YAYMAIL_PLUGIN_URL . 'assets/aceeditor/theme-merbivore_soft.js', '', YAYMAIL_VERSION, true );
402 wp_enqueue_script( $scriptId . 'ace4-script', YAYMAIL_PLUGIN_URL . 'assets/aceeditor/worker-css.js', '', YAYMAIL_VERSION, true );
403 wp_enqueue_script( $scriptId . 'ace5-script', YAYMAIL_PLUGIN_URL . 'assets/aceeditor/snippets/css.js', '', YAYMAIL_VERSION, true );
404 } else {
405 wp_dequeue_script( $scriptId . 'ace-script' );
406 wp_dequeue_script( $scriptId . 'ace1-script' );
407 wp_dequeue_script( $scriptId . 'ace2-script' );
408 wp_dequeue_script( $scriptId . 'ace3-script' );
409 wp_dequeue_script( $scriptId . 'ace4-script' );
410 wp_dequeue_script( $scriptId . 'ace5-script' );
411 }
412 // Load ACE Editor -End
413 // Css for page admin of WordPress.
414 wp_enqueue_style( $scriptId . '-css', YAYMAIL_PLUGIN_URL . 'assets/admin/css/css.css', array(), YAYMAIL_VERSION );
415 $current_user = wp_get_current_user();
416 $default_email_test = false != get_user_meta( get_current_user_id(), 'yaymail_default_email_test', true ) ? get_user_meta( get_current_user_id(), 'yaymail_default_email_test', true ) : $current_user->user_email;
417 $element = new DefaultElement();
418 $yaymailSettingsDefaultLogo = get_option( 'yaymail_settings_default_logo' );
419 $setDefaultLogo = false != $yaymailSettingsDefaultLogo ? $yaymailSettingsDefaultLogo['set_default'] : '0';
420 $yaymailSettingsDefaultFooter = get_option( 'yaymail_settings_default_footer' );
421 $setDefaultFooter = false != $yaymailSettingsDefaultFooter ? $yaymailSettingsDefaultFooter['set_default'] : '0';
422 if ( isset( $_GET['template'] ) || ! empty( $_GET['template'] ) ) {
423 $req_template['id'] = sanitize_text_field( $_GET['template'] );
424 } else {
425 $req_template['id'] = 'new_order';
426 }
427 foreach ( $this->emails as $value ) {
428 if ( is_array( $value ) ) {
429 if ( $value['id'] == $req_template['id'] ) {
430 $req_template['title'] = $value['title'];
431 }
432 } else {
433 if ( $value->id == $req_template['id'] ) {
434 $req_template['title'] = $value->title;
435 }
436 }
437 }
438
439 $allowed_html_tags = wp_kses_allowed_html( 'post' );
440 $allowed_html_tags['style'] = array();
441
442 // List email supported
443 $list_email_supported = PluginSupported::listAddonSupported();
444 $list_plugin_for_pro = PluginSupported::listPluginForProSupported();
445
446 $orderby = 'name';
447 $order_category = 'asc';
448 $hide_empty = false;
449
450 $product_categories = get_terms(
451 array(
452 'taxonomy' => 'product_cat',
453 'orderby' => $orderby,
454 'order' => $order_category,
455 'hide_empty' => $hide_empty,
456 )
457 );
458 $initial_categories = array_map(
459 function( $cat_item ) {
460 return array(
461 'label' => $cat_item->name,
462 'value' => $cat_item->term_id,
463 );
464 },
465 $product_categories
466 );
467
468 $billing_country = WC()->countries->countries;
469 $arr_payment_methods = array();
470 $payment_methods = WC()->payment_gateways->payment_gateways;
471 foreach ( $payment_methods as $key => $item ) {
472 if ( 'yes' == $item->enabled ) {
473 $arr_payment_methods[] = array(
474 'id' => $item->id,
475 'method_title' => ! empty( $item->method_title ) ? $item->method_title : $item->title,
476 );
477 }
478 }
479
480 $get_shipping_methods = WC()->shipping->get_shipping_methods();
481 $data = array();
482 foreach ( $get_shipping_methods as $shipping_method ) {
483 $item = array(
484 'id' => $shipping_method->id,
485 'method_title' => $shipping_method->method_title,
486 );
487
488 $data[] = $item;
489 }
490
491 $shipping_methods = $data;
492
493 $data_coupon_codes = array();
494 $data_products = array();
495 $data_skus = array();
496
497 if ( is_plugin_active( 'yaymail-addon-conditional-logic/yaymail-conditional-logic.php' ) || is_plugin_active( 'yaymail-conditional-logic/yaymail-conditional-logic.php' ) ) {
498 global $wpdb;
499 $data_coupon_codes = $wpdb->get_col( "SELECT post_name FROM $wpdb->posts WHERE post_type = 'shop_coupon' AND post_status = 'publish' ORDER BY post_name ASC LIMIT 20" );
500
501 $get_products = $wpdb->get_results( "SELECT ID as id, post_title as name FROM $wpdb->posts WHERE post_type = 'product' AND post_status = 'publish' ORDER BY name ASC LIMIT 20" );
502 foreach ( $get_products as $product ) {
503 $data_products[] = $product;
504 }
505
506 $get_product_skus = $wpdb->get_results(
507 // "SELECT CONCAT(p.post_title, ' (#', pm.meta_value, ')') AS label,
508 "SELECT
509 DISTINCT(pm.meta_value) as sku,
510 p.post_title AS name,
511 p.ID AS id
512 FROM {$wpdb->prefix}postmeta AS pm
513 INNER JOIN {$wpdb->prefix}posts AS p
514 ON pm.post_id = p.ID
515 WHERE pm.meta_key = '_sku'
516 AND p.post_type IN ('product', 'product_variation')
517 AND p.post_status = 'publish'
518 ORDER BY pm.meta_value ASC LIMIT 20"
519 );
520 foreach ( $get_product_skus as $skus ) {
521 $data_skus[] = $skus;
522 }
523 }
524 $coupon_codes = $data_coupon_codes;
525 $products = $data_products;
526 $product_skus = $data_skus;
527
528 $arrayShortCode = array();
529 $yaymail_informations = Helper::inforShortcode( '', '', array() );
530 $shortcodeCustom = array_keys( apply_filters( 'yaymail_customs_shortcode', array(), $yaymail_informations, '' ) );
531 if ( ! empty( $shortcodeCustom ) ) {
532 $arrItemShortcodeCus = array();
533 foreach ( $shortcodeCustom as $item ) {
534 $name = __( 'Custom Shortcode For ', 'yaymail' ) . ucfirst( str_replace( array( '[', ']', 'yaymail_custom_shortcode_' ), '', $item ) );
535 array_push( $arrItemShortcodeCus, array( $item, $name ) );
536 }
537 $arrayShortCode[] = array(
538 'plugin' => __( 'Custom Shortcode', 'yaymail' ),
539 'shortcode' => $arrItemShortcodeCus,
540 );
541 }
542
543 $listShortCodeAddon = apply_filters( 'yaymail_list_shortcodes', $arrayShortCode );
544 // WooCommerce for LatePoint
545 if ( class_exists( 'TechXelaLatePointPaymentsWooCommerce' ) ) {
546 $listShortCodeAddon[] = array(
547 'plugin' => 'WooCommerce for LatePoint',
548 'shortcode' => array(
549 array( '[yaymail_woo_latepoint_booking_detail]', 'WooCommerce Latepoint Booking Detail' ),
550
551 array( '[yaymail_woo_latepoint_caption]', 'WooCommerce Latepoint caption' ),
552 array( '[yaymail_woo_latepoint_bg_color]', 'WooCommerce Latepoint Bg Color' ),
553 array( '[yaymail_woo_latepoint_text_color]', 'WooCommerce Latepoint Text Color' ),
554 array( '[yaymail_woo_latepoint_font_size]', 'WooCommerce Latepoint Font Size' ),
555 array( '[yaymail_woo_latepoint_border]', 'WooCommerce Latepoint Border' ),
556 array( '[yaymail_woo_latepoint_border_radius]', 'WooCommerce Latepoint Border Radius' ),
557 array( '[yaymail_woo_latepoint_margin]', 'WooCommerce Latepoint Margin' ),
558 array( '[yaymail_woo_latepoint_padding]', 'WooCommerce Latepoint Padding' ),
559 array( '[yaymail_woo_latepoint_css]', 'WooCommerce Latepoint css' ),
560 array( '[yaymail_woo_latepoint_show_locations]', 'WooCommerce Latepoint Show Locations' ),
561 array( '[yaymail_woo_latepoint_show_agents]', 'WooCommerce Latepoint Show Agents' ),
562 array( '[yaymail_woo_latepoint_show_services]', 'WooCommerce Latepoint Show Services' ),
563 array( '[yaymail_woo_latepoint_show_service_categories]', 'WooCommerce Latepoint Show Service Sategories' ),
564 array( '[yaymail_woo_latepoint_selected_location]', 'WooCommerce Latepoint Selected Location' ),
565 array( '[yaymail_woo_latepoint_selected_agent]', 'WooCommerce Latepoint Selected Agent' ),
566 array( '[yaymail_woo_latepoint_selected_service]', 'WooCommerce Latepoint Selected Service' ),
567 array( '[yaymail_woo_latepoint_selected_service_category]', 'WooCommerce Latepoint Selected Service Category' ),
568 array( '[yaymail_woo_latepoint_selected_duration]', 'WooCommerce Latepoint Selected Duration' ),
569 array( '[yaymail_woo_latepoint_selected_total_attendees]', 'WooCommerce Latepoint Selected Total Attendees' ),
570 array( '[yaymail_woo_latepoint_hide_side_panel]', 'WooCommerce Latepoint Hide Side Panel' ),
571 array( '[yaymail_woo_latepoint_hide_summary]', 'WooCommerce Latepoint Hide Summary' ),
572 array( '[yaymail_woo_latepoint_calendar_start_date]', 'WooCommerce Latepoint Calendar Start Date' ),
573
574 ),
575 );
576 }
577
578 $this->emails = array_map(
579 function( $item ) {
580 $final_item = new stdClass();
581
582 if ( is_array( $item ) ) {
583 $final_item->id = $item['id'];
584 $final_item->title = $item['title'];
585 } else {
586 $final_item->id = $item->id;
587 $final_item->title = $item->title;
588 }
589
590 return $final_item;
591 },
592 $this->emails
593 );
594 wp_localize_script(
595 $scriptId,
596 'yaymail_data',
597 array(
598 'orders' => $order,
599 'imgUrl' => YAYMAIL_PLUGIN_URL . 'assets/dist/images',
600 'nonce' => wp_create_nonce( 'email-nonce' ),
601 'defaultDataElement' => $element->defaultDataElement,
602 'home_url' => home_url(),
603 'settings' => $settings,
604 'admin_url' => get_admin_url(),
605 'yaymail_plugin_url' => YAYMAIL_PLUGIN_URL,
606 'wc_emails' => $this->emails,
607 'default_email_test' => $default_email_test,
608 'template' => $req_template,
609 'set_default_logo' => $setDefaultLogo,
610 'set_default_footer' => $setDefaultFooter,
611 'list_plugin_for_pro' => $list_plugin_for_pro,
612 'plugins' => apply_filters( 'yaymail_plugins', array() ),
613 'list_email_supported' => $list_email_supported,
614 'billing_country' => $billing_country,
615 'payment_methods' => $arr_payment_methods,
616 'link_detail_smtp' => self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=yaysmtp&section=description&TB_iframe=true&width=600&height=800' ),
617 'yaymail_automatewoo_active' => ( is_plugin_active( 'yaymail-addon-for-automatewoo/yaymail-automatewoo.php' ) || is_plugin_active( 'email-customizer-automatewoo/yaymail-automatewoo.php' ) ) ? true : false,
618 'yaymail_dokan_active' => is_plugin_active( 'yaymail-addon-for-dokan/yaymail-premium-addon-dokan.php' ) ? true : false,
619 'yaysmtp_active' => $this->check_plugin_installed( 'yaysmtp/yay-smtp.php' ) || $this->check_plugin_installed( 'yaysmtp-pro/yay-smtp.php' ) ? true : false,
620 'yaysmtp_setting' => admin_url( 'admin.php?page=yaysmtp' ),
621 'list_shortcode_addon' => $listShortCodeAddon,
622 'shipping_methods' => $shipping_methods,
623 'coupon_codes' => $coupon_codes,
624 'product_skus' => $product_skus,
625 'i18n' => I18n::jsTranslate(),
626 'products' => $products,
627 'categories' => $initial_categories,
628 'condition_values_page_size' => 20,
629 )
630 );
631 do_action( 'yaymail_enqueue_script_conditional_logic' );
632 do_action( 'yaymail_before_enqueue_dependence' );
633 }
634 wp_enqueue_script( 'yaymail-notice', YAYMAIL_PLUGIN_URL . 'assets/admin/js/notice.js', array( 'jquery' ), YAYMAIL_VERSION, false );
635 wp_localize_script(
636 'yaymail-notice',
637 'yaymail_notice',
638 array(
639 'admin_ajax' => admin_url( 'admin-ajax.php' ),
640 'nonce' => wp_create_nonce( 'yaymail_nonce' ),
641 )
642 );
643 }
644 public function getPageId() {
645 if ( null == $this->pageId ) {
646 $this->pageId = YAYMAIL_PREFIX . '-settings';
647 }
648
649 return $this->pageId;
650 }
651 public function check_plugin_installed( $plugin_slug ) {
652 $installed_plugins = get_plugins();
653 return array_key_exists( $plugin_slug, $installed_plugins ) || in_array( $plugin_slug, $installed_plugins, true );
654 }
655
656 public function search_by_meta_value_or_post_title( $q ) {
657 if ( $title = $q->get( '_meta_or_title' ) ) {
658 add_filter(
659 'get_meta_sql',
660 function( $sql ) use ( $title ) {
661 global $wpdb;
662
663 // Only run once:
664 static $nr = 0;
665 if ( 0 != $nr++ ) {
666 return $sql;
667 }
668 // Modify WHERE part:
669 $sql['where'] = sprintf(
670 ' AND ( %s OR %s ) ',
671 $wpdb->prepare( "{$wpdb->posts}.post_title like '%%%s%%'", $title ),
672 mb_substr( $sql['where'], 5, mb_strlen( $sql['where'] ) )
673 );
674 return $sql;
675 }
676 );
677 }
678 }
679 }
680