当前位置: 首页>>代码示例>>PHP>>正文


PHP WC_Email::__construct方法代码示例

本文整理汇总了PHP中WC_Email::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP WC_Email::__construct方法的具体用法?PHP WC_Email::__construct怎么用?PHP WC_Email::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WC_Email的用法示例。


在下文中一共展示了WC_Email::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * Set email defaults
  *
  * @since 1.0.1
  */
 public function __construct()
 {
     /**
      * Set plugin slug
      * @since	1.1.2
      */
     $this->plugin_slug = 'angelleye-offers-for-woocommerce';
     // set ID, this simply needs to be a unique name
     $this->id = 'wc_offer_on_hold';
     // this is the title in WooCommerce Email settings
     $this->title = __('Offer On Hold', $this->plugin_slug);
     // this is the description in WooCommerce email settings
     $this->description = __('Offer On Hold Notification emails are sent when a customer offer is placed on hold by the store admin', $this->plugin_slug);
     // these are the default heading and subject lines that can be overridden using the settings
     $this->heading = __('Offer On Hold', $this->plugin_slug);
     $this->subject = __('[{site_title}] Offer On Hold ({offer_number}) - {offer_date}', $this->plugin_slug);
     // Set email template paths
     $this->template_html = 'woocommerce-offer-on-hold.php';
     $this->template_plain = 'plain/woocommerce-offer-on-hold.php';
     // Call parent constructor to load any other defaults not explicitly defined here
     parent::__construct();
     // Set the recipient
     $this->recipient = $this->get_option('recipient');
     // Other settings
     $this->template_base = OFWC_EMAIL_TEMPLATE_PATH;
 }
开发者ID:k2jysy,项目名称:kshop,代码行数:31,代码来源:class-wc-offer-on-hold-email.php

示例2: __construct

 /**
  * Set email defaults
  *
  * @since 0.1
  */
 public function __construct()
 {
     // set ID, this simply needs to be a unique name
     $this->id = 'wc_expedited_order';
     // this is the title in WooCommerce Email settings
     $this->title = 'Expedited Order';
     // this is the description in WooCommerce email settings
     $this->description = 'Expedited Order Notification emails are sent when a customer places an order with 3-day or next day shipping';
     // these are the default heading and subject lines that can be overridden using the settings
     $this->heading = 'Expedited Shipping Order';
     $this->subject = 'Expedited Shipping Order';
     // these define the locations of the templates that this email should use, we'll just use the new order template since this email is similar
     $this->template_html = 'emails/admin-new-order.php';
     $this->template_plain = 'emails/plain/admin-new-order.php';
     // Trigger on new paid orders
     add_action('woocommerce_order_status_pending_to_processing_notification', array($this, 'trigger'));
     add_action('woocommerce_order_status_failed_to_processing_notification', array($this, 'trigger'));
     // Call parent constructor to load any other defaults not explicity defined here
     parent::__construct();
     // this sets the recipient to the settings defined below in init_form_fields()
     $this->recipient = $this->get_option('recipient');
     // if none was entered, just use the WP admin email as a fallback
     if (!$this->recipient) {
         $this->recipient = get_option('admin_email');
     }
 }
开发者ID:jvcanote,项目名称:woocommerce-expedited-order-email,代码行数:31,代码来源:class-wc-expedited-order-email.php

示例3: order

 /**
  * Constructor
  */
 function __construct()
 {
     $this->id = 'vendor_new_order';
     $this->title = __('Notify vendors', 'wcvendors');
     $this->description = __('New order emails are sent when an order is received/paid by a customer.', 'wcvendors');
     $this->heading = __('New customer order', 'wcvendors');
     $this->subject = __('[{blogname}] New customer order ({order_number}) - {order_date}', 'wcvendors');
     $this->template_html = 'vendor-new-order.php';
     $this->template_plain = 'vendor-new-order.php';
     $this->template_base = dirname(dirname(dirname(dirname(__FILE__)))) . '/templates/emails/';
     // #216 is broken.  Code below is from that.  The filter is probably the culprit.
     //$completed_statuses = apply_filters( 'wcvendors_completed_statuses', array( 'completed', 'processing' ) ); // #216
     //foreach ( $completed_statuses as $status ) {
     //add_action( 'woocommerce_order_status_pending_to_{$status}_notification', array( $this, 'trigger' ) );
     //add_action( 'woocommerce_order_status_failed_to_{$status}_notification', array( $this, 'trigger' ) );
     //add_action( 'woocommerce_order_status_on-hold_to_{$status}_notification', array( $this, 'trigger' ) );
     //}
     // end #216
     // Triggers for this email
     add_action('woocommerce_order_status_pending_to_processing_notification', array($this, 'trigger'));
     add_action('woocommerce_order_status_pending_to_completed_notification', array($this, 'trigger'));
     add_action('woocommerce_order_status_failed_to_processing_notification', array($this, 'trigger'));
     add_action('woocommerce_order_status_failed_to_completed_notification', array($this, 'trigger'));
     add_action('woocommerce_order_status_on-hold_to_processing_notification', array($this, 'trigger'));
     // Added in 1.8.4
     add_action('woocommerce_order_status_on-hold_to_completed_notification', array($this, 'trigger'));
     // Added in 1.8.4
     $this->recipient = get_option('admin_email');
     // Call parent constuctor
     parent::__construct();
 }
开发者ID:simplementNat,项目名称:wcvendors,代码行数:34,代码来源:class-wc-notify-vendor.php

示例4: __construct

 /**
  * Constructor
  *
  * Initialize email type and set templates paths
  *
  * @since   1.0.0
  * @author  Alberto Ruggiero
  */
 public function __construct()
 {
     $this->title = __('Review reminder', 'ywrr');
     $this->template_html = 'emails/review-request.php';
     $this->template_plain = 'emails/plain/review-request.php';
     parent::__construct();
 }
开发者ID:patrickcurl,项目名称:monks,代码行数:15,代码来源:class-ywrr-request-email.php

示例5: __construct

 /**
  * Set email defaults
  *
  * @since 0.1
  */
 public function __construct()
 {
     // set ID, this simply needs to be a unique name
     $this->id = 'wc_ticket_order';
     // this is the title in WooCommerce Email settings
     $this->title = 'Tickets Order';
     //home/dancenergyjail/home/dancenergy/public_html/sandbox/wp-content/plugins/woocommerce/templates//home/dancenergyjail/home/dancenergy/public_html/sandbox/wp-content/plugins/ticket_plugin/includes/templates/emails/customer-completed-order.php
     // this is the description in WooCommerce email settings
     $this->description = 'Tickets Order Notification emails are sent when a customer places an order with a ticket.';
     // these are the default heading and subject lines that can be overridden using the settings
     $this->heading = 'Your Tickets';
     $this->subject = 'Your Tickets';
     // these define the locations of the templates that this email should use, we'll just use the new order template since this email is similar
     $this->template_base = plugin_dir_path(__FILE__);
     $this->template_html = 'templates/emails/customer-completed-order-ticket.php';
     $this->template_plain = 'templates/emails/plain/customer-completed-order-ticket.php';
     // Trigger on new paid orders
     //backend order page hook
     add_action('woocommerce_after_resend_order_email', array($this, 'trigger'), 1);
     //Frontend hook after the order status changes to completed
     add_action('woocommerce_order_status_completed_notification', array($this, 'trigger'), 1);
     // For WooCommerce 2.0
     // Call parent constructor to load any other defaults not explicity defined here
     parent::__construct();
     // this sets the recipient to the settings defined below in init_form_fields()
     $this->recipient = $this->get_option('recipient');
     // if none was entered, just use the WP admin email as a fallback
     if (!$this->recipient) {
         $this->recipient = get_option('admin_email');
     }
 }
开发者ID:jvcanote,项目名称:woocommerce_simple_tickets,代码行数:36,代码来源:Class_emails.php

示例6: __construct

 /**
  * Set email defaults
  *
  * @since 0.1.0
  */
 public function __construct()
 {
     /**
      * Set plugin slug
      * @since	1.1.2
      */
     $this->plugin_slug = 'angelleye-offers-for-woocommerce';
     // set ID, this simply needs to be a unique name
     $this->id = 'wc_new_offer';
     // this is the title in WooCommerce Email settings
     $this->title = __('New offer', $this->plugin_slug);
     // this is the description in WooCommerce email settings
     $this->description = __('New Offer Notification emails are sent to the admin when customer submits offer', $this->plugin_slug);
     // these are the default heading and subject lines that can be overridden using the settings
     $this->heading = __('New Offer', $this->plugin_slug);
     $this->subject = __('New Offer', $this->plugin_slug);
     // Set email template paths
     $this->template_html = 'woocommerce-new-offer.php';
     $this->template_plain = 'plain/woocommerce-new-offer.php';
     // Call parent constructor to load any other defaults not explicitly defined here
     parent::__construct();
     // Set the recipient
     $this->recipient = $this->get_option('recipient');
     // Other settings
     $this->template_base = OFWC_PUBLIC_EMAIL_TEMPLATE_PATH;
 }
开发者ID:elarson,项目名称:offers-for-woocommerce,代码行数:31,代码来源:class-wc-new-offer-email.php

示例7: Order

 /**
  * Constructor
  *
  * @version 2.4.0
  */
 function __construct($id = 1)
 {
     $this->id = 'wcj_custom' . '_' . $id;
     $this->customer_email = '%customer%' === $this->get_option('recipient') ? true : false;
     $this->title = __('Custom', 'woocommerce-jetpack') . ' #' . $id;
     $this->description = __('Custom emails are sent to the recipient list when selected triggers are called.', 'woocommerce-jetpack');
     $this->heading = __('Custom Heading', 'woocommerce');
     $this->subject = __('[{site_title}] Custom Subject - Order ({order_number}) - {order_date}', 'woocommerce-jetpack');
     /* $this->template_html    = 'emails/admin-new-order.php';
     		$this->template_plain   = 'emails/plain/admin-new-order.php'; */
     // Triggers for this email
     $trigger_hooks = $this->get_option('trigger');
     if (!empty($trigger_hooks) && is_array($trigger_hooks)) {
         foreach ($trigger_hooks as $trigger_hook) {
             add_action($trigger_hook, array($this, 'trigger'));
         }
     }
     // Call parent constructor
     parent::__construct();
     // Other settings
     if (!$this->customer_email) {
         $this->recipient = $this->get_option('recipient');
         if (!$this->recipient) {
             $this->recipient = get_option('admin_email');
         }
     }
 }
开发者ID:bailoo,项目名称:10dollrWP,代码行数:32,代码来源:class-wc-email-wcj-custom.php

示例8: Order

 /**
  * Constructor
  *
  * @version 2.5.5
  */
 function __construct($id = 1)
 {
     $this->id = 'wcj_custom' . '_' . $id;
     $this->customer_email = '%customer%' === $this->get_option('recipient') ? true : false;
     $this->title = get_option('wcj_emails_custom_emails_admin_title_' . $id, __('Custom', 'woocommerce-jetpack') . ' #' . $id);
     $this->description = __('Custom emails are sent to the recipient list when selected triggers are called.', 'woocommerce-jetpack');
     $this->heading = __('Custom Heading', 'woocommerce');
     $this->subject = __('[{site_title}] Custom Subject - Order ({order_number}) - {order_date}', 'woocommerce-jetpack');
     /* $this->template_html    = 'emails/admin-new-order.php';
     		$this->template_plain   = 'emails/plain/admin-new-order.php'; */
     // Triggers for this email
     $trigger_hooks = $this->get_option('trigger');
     if (!empty($trigger_hooks) && is_array($trigger_hooks)) {
         $is_woocommerce_checkout_order_processed_notification_added = false;
         foreach ($trigger_hooks as $trigger_hook) {
             if (false !== strpos($trigger_hook, 'woocommerce_new_order_notification') && false === $is_woocommerce_checkout_order_processed_notification_added) {
                 add_action('woocommerce_checkout_order_processed_notification', array($this, 'trigger'), PHP_INT_MAX);
                 $is_woocommerce_checkout_order_processed_notification_added = true;
             } else {
                 add_action($trigger_hook, array($this, 'trigger'), PHP_INT_MAX);
             }
         }
     }
     // Call parent constructor
     parent::__construct();
     // Other settings
     if (!$this->customer_email) {
         $this->recipient = $this->get_option('recipient');
         if (!$this->recipient) {
             $this->recipient = get_option('admin_email');
         }
     }
 }
开发者ID:algoritmika,项目名称:woocommerce-jetpack,代码行数:38,代码来源:class-wc-email-wcj-custom.php

示例9: __construct

 /**
  * Set email defaults
  *
  * @since 0.1
  */
 public function __construct()
 {
     // set ID, this simply needs to be a unique name
     $this->id = 'wc_processing_order';
     // this is the title in WooCommerce Email settings
     $this->title = 'Processing order (Customer)';
     // this is the description in WooCommerce email settings
     $this->description = 'On Hold to Processing Notification emails are sent when a customer order change from On Hold to Processing';
     // these are the default heading and subject lines that can be overridden using the settings
     $this->heading = 'Processing Order';
     $this->subject = 'Processing Order';
     // these define the locations of the templates that this email should use
     $this->template_html = 'emails/customer-processing-order.php';
     $this->template_plain = 'emails/plain/customer-processing-order.php';
     $path = explode(DIRECTORY_SEPARATOR, untrailingslashit(plugin_dir_path(__FILE__)));
     array_pop($path);
     $path = implode(DIRECTORY_SEPARATOR, $path);
     $this->template_base = $path . '/templates/';
     // Trigger on On Hold to Processing Notification
     add_action('woocommerce_order_status_on-hold_to_processing_notification', array($this, 'trigger'));
     // Call parent constructor to load any other defaults not explicity defined here
     parent::__construct();
     // this sets the recipient to the settings defined below in init_form_fields()
     // $this->recipient = $this->get_option( 'recipient' );
     // if none was entered, just use the WP admin email as a fallback
     // if ( ! $this->recipient )
     // 	$this->recipient = get_option( 'admin_email' );
 }
开发者ID:JaneJieYing,项目名称:HiFridays,代码行数:33,代码来源:class-wc-processing-order-email.php

示例10: __construct

 /**
  * Set Email Defaults
  *
  * @since 0.1
  */
 public function __construct()
 {
     // set ID
     $this->id = 'wc_customer_note_order';
     // this is the title in WooCommerce Email Settings
     $this->title = 'Customer Note Order';
     // this is the description in WooCommerce email settings
     $this->description = 'Customer Note Emails are sent to admin email when a customer adds a note to an order';
     // these are the default heading and subject lines, can be overridden using settings
     $this->heading = 'Customer Order Note';
     $this->subject = 'Customer Note on Order:';
     // template for email, using existing emails as stand-in
     $this->template_html = 'emails/admin-customer-note.php';
     $this->template_plain = 'email/plain/admin-new-order.php';
     // Trigger on completed orders
     #add_action( 'woocommerce_order_status_pending_to_completed_notification', array( $this, 'trigger' ) );
     add_action('woocommerce_order_status_pending_to_completed', array($this, 'trigger'));
     // Call parent constructor, just in case any defaults were missed
     parent::__construct();
     // this sets the recipient to the settings defined below in init_form_fields()
     $this->recipient = $this->get_option('recipient');
     // if none was entered, just use the WP admin email as a fallback
     if (!$this->recipient) {
         $this->recipient = get_option('admin_email');
     }
 }
开发者ID:NerdyDillinger,项目名称:ovrride,代码行数:31,代码来源:class-wc-customer-note-email.php

示例11: array

 /**
  * Constructor
  */
 function __construct()
 {
     $this->id = 'new_booking';
     $this->title = __('New Booking', 'woocommerce-bookings');
     $this->description = __('New booking emails are sent to the admin when a new booking is created and paid. This email is also received when a Pending confirmation booking is created.', 'woocommerce-bookings');
     $this->heading = __('New booking', 'woocommerce-bookings');
     $this->heading_confirmation = __('Confirm booking', 'woocommerce-bookings');
     $this->subject = __('[{blogname}] New booking for {product_title} (Order {order_number}) - {order_date}', 'woocommerce-bookings');
     $this->subject_confirmation = __('[{blogname}] A new booking for {product_title} (Order {order_number}) is awaiting your approval - {order_date}', 'woocommerce-bookings');
     $this->template_html = 'emails/admin-new-booking.php';
     $this->template_plain = 'emails/plain/admin-new-booking.php';
     // Triggers for this email
     add_action('woocommerce_booking_in-cart_to_paid_notification', array($this, 'queue_notification'));
     add_action('woocommerce_booking_in-cart_to_pending-confirmation_notification', array($this, 'queue_notification'));
     add_action('woocommerce_booking_unpaid_to_paid_notification', array($this, 'queue_notification'));
     add_action('woocommerce_booking_unpaid_to_pending-confirmation_notification', array($this, 'queue_notification'));
     add_action('woocommerce_booking_confirmed_to_paid_notification', array($this, 'queue_notification'));
     add_action('woocommerce_new_booking_notification', array($this, 'trigger'));
     add_action('woocommerce_admin_new_booking_notification', array($this, 'trigger'));
     // Call parent constructor
     parent::__construct();
     // Other settings
     $this->template_base = WC_BOOKINGS_TEMPLATE_PATH;
     $this->recipient = $this->get_option('recipient', get_option('admin_email'));
 }
开发者ID:tonyvu1985,项目名称:appletutorings,代码行数:28,代码来源:class-wc-email-new-booking.php

示例12: __construct

 /**
  * Constructor
  */
 function __construct()
 {
     $this->id = 'new_switch_order';
     $this->title = __('Subscription Switched', 'woocommerce-subscriptions');
     $this->description = __('Subscription switched emails are sent when a customer switches a subscription.', 'woocommerce-subscriptions');
     $this->heading = __('Subscription Switched', 'woocommerce-subscriptions');
     $this->subject = __('[{blogname}] Subscription Switched ({order_number}) - {order_date}', 'woocommerce-subscriptions');
     $this->template_html = 'emails/admin-new-switch-order.php';
     $this->template_plain = 'emails/plain/admin-new-switch-order.php';
     $this->template_base = plugin_dir_path(WC_Subscriptions::$plugin_file) . 'templates/';
     // Triggers for this email
     add_action('woocommerce_order_status_pending_to_processing_switch_notification', array($this, 'trigger'));
     add_action('woocommerce_order_status_pending_to_completed_switch_notification', array($this, 'trigger'));
     add_action('woocommerce_order_status_pending_to_on-hold_switch_notification', array($this, 'trigger'));
     add_action('woocommerce_order_status_failed_to_processing_switch_notification', array($this, 'trigger'));
     add_action('woocommerce_order_status_failed_to_completed_switch_notification', array($this, 'trigger'));
     add_action('woocommerce_order_status_failed_to_on-hold_switch_notification', array($this, 'trigger'));
     // We want all the parent's methods, with none of its properties, so call its parent's constructor, rather than my parent constructor
     WC_Email::__construct();
     // Other settings
     $this->recipient = $this->get_option('recipient');
     if (!$this->recipient) {
         $this->recipient = get_option('admin_email');
     }
 }
开发者ID:Ezyva2015,项目名称:SMSF-Academy-Wordpress,代码行数:28,代码来源:class-wcs-email-new-switch-order.php

示例13: __construct

 /**
  * Hooks up the functions for Waitlist Mailout
  *
  * @access public
  */
 public function __construct()
 {
     // Init
     $this->wcwl_setup_mailout();
     // Triggers for this email
     add_action('woocommerce_waitlist_mailout_send_email', array($this, 'trigger'), 10, 2);
     // Call parent constructor
     parent::__construct();
 }
开发者ID:developmentDM2,项目名称:The-Haute-Mess,代码行数:14,代码来源:class-pie-wcwl-waitlist-mailout.php

示例14: array

 /**
  * Constructor
  */
 function __construct()
 {
     $this->set_email_strings();
     // Triggers for this email
     add_action('woocommerce_order_status_refunded_notification', array($this, 'trigger'), null, 3);
     add_action('woocommerce_order_partially_refunded_notification', array($this, 'trigger'), null, 3);
     // Call parent constuctor
     parent::__construct();
 }
开发者ID:noahjohn9259,项目名称:woocommerce,代码行数:12,代码来源:class-wc-email-customer-refunded-order.php

示例15: __construct

 /**
  * Constructor
  *
  * Initialize email type and set templates paths
  *
  * @since   1.0.0
  * @author  Alberto Ruggiero
  */
 public function __construct()
 {
     $this->title = __('Review Reminder', 'yith-woocommerce-review-reminder');
     $this->template_html = 'emails/review-request.php';
     $this->template_plain = 'emails/plain/review-request.php';
     $this->id = 'yith-review-reminder';
     $this->description = __('Send a review reminder to the customers over WooCommerce.', 'yith-woocommerce-review-reminder');
     $this->customer_email = true;
     parent::__construct();
 }
开发者ID:VitaliyProdan,项目名称:wp_shop,代码行数:18,代码来源:class-ywrr-request-email.php


注:本文中的WC_Email::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。