golden hour
/home/godaofbq/hardchambers.com/wp-content/plugins/emailkit/includes/Admin/Emails
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
127 B
Del
OK
EmailConfig.php
498 B
Del
OK
EmailLists.php
4.65 KB
Del
OK
Helpers
-
Del
OK
Woocommerce
-
Del
OK
WordPress
-
Del
OK
Edit: EmailLists.php
<?php namespace Emailkit\Admin\Emails; defined( "ABSPATH") || exit; class EmailLists { const NEW_ORDER = "new_order"; const CANCELLED_ORDER = "cancelled_order"; const FAILED_ORDER = "failed_order"; const ORDER_ON_HOLD = "customer_on_hold_order"; const PROCESSING_ORDER = "customer_processing_order"; const COMPLETED_ORDER = "customer_completed_order"; const REFUNDED_ORDER = "customer_refunded_order"; const LOW_STOCK = "low_stock"; const NO_STOCK = "no_stock"; const BACK_ORDER = "back_order"; const CUSTOMER_INVOICE_OR_ORDER_DETAILS = "customer_invoice"; // const ORDER_DETAILS = "Order Details"; const CUSTOMER_NOTE = "customer_note"; const RESET_PASSWORD = "customer_reset_password"; const NEW_ACCOUNT = "customer_new_account"; const WP_NEW_REGISTER = "new_register"; const WP_RESET_PASSWORD = "reset_account"; const PARTIAL_REFUND = "partial_refund"; /** * Get woocommerce template names * @return array */ public static function woocommerce_email($template_type = '') { $list = [ 'Select Template' => esc_html__('Select Template', 'emailkit'), self::NEW_ORDER => esc_html__('New Order', 'emailkit'), self::CANCELLED_ORDER => esc_html__('Cancelled order', 'emailkit'), self::FAILED_ORDER => esc_html__('Failed Order', 'emailkit'), self::ORDER_ON_HOLD => esc_html__('Order On Hold', 'emailkit'), self::PROCESSING_ORDER => esc_html__('Processing Order', 'emailkit'), self::COMPLETED_ORDER => esc_html__('Completed Order', 'emailkit'), self::LOW_STOCK => esc_html__('Low Stock', 'emailkit'), self::NO_STOCK => esc_html__('No Stock', 'emailkit'), self::BACK_ORDER => esc_html__('Back Order', 'emailkit'), self::REFUNDED_ORDER => esc_html__('Refunded Order', 'emailkit'), self::PARTIAL_REFUND => esc_html__('Partial Refund', 'emailkit'), self::CUSTOMER_INVOICE_OR_ORDER_DETAILS => esc_html__('Customer Invoice ', 'emailkit'), self::CUSTOMER_NOTE => esc_html__('Customer Note', 'emailkit'), self::NEW_ACCOUNT => esc_html__('New Account', 'emailkit'), self::RESET_PASSWORD => esc_html__('Reset Password', 'emailkit'), ]; if($template_type){ return isset($list[$template_type]) ? $list[$template_type] : ''; } return $list; } /** * Get wordpress template names * @return array */ public static function wordpress_email($template_type = '') { $list = [ 'Select Template' => esc_html__('Select Template', 'emailkit'), self::WP_NEW_REGISTER => esc_html__('New Account', 'emailkit'), self::WP_RESET_PASSWORD => esc_html__('Reset Password', 'emailkit'), ]; if ($template_type) { return isset($list[$template_type]) ? $list[$template_type] : ''; } return $list; } /** * Get saved templates from database * @return array */ public static function saved_templates() : array { $emailkit_saved_templates = []; $templates = get_posts([ 'post_type' => 'emailkit-template', 'numberposts' => -1, ]); foreach ( $templates as $template ) { setup_postdata( $template ); $template_id = get_post_meta( $template->ID, 'emailkit_template_id', true ); //get the id of main template to fetch types and etc $emailkit_saved_templates[] = array( 'title' => $template->post_title, 'id' => $template->ID, 'template_id' => $template_id, 'email_type' => get_post_meta( $template_id, 'emailkit_email_type', true ), 'template_type' => get_post_meta( $template_id, 'emailkit_template_type', true ), 'template_status' => get_post_meta( $template_id, 'emailkit_template_status', true ), ); } wp_reset_postdata(); return $emailkit_saved_templates; } }
Save