class-completed-email.php 4.87 KB
Newer Older
Varun Sridharan's avatar
Varun Sridharan committed
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
<?php

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

if ( ! class_exists( 'WC_QD_donation_completed_email' ) ) :

/**
 * Customer Completed Order Email
 *
 * Order complete emails are sent to the customer when the order is marked complete and usual indicates that the order has been shipped.
 *
 * @class       WC_QD_donation_completed_email
 * @version     2.0.0
 * @package     WooCommerce/Classes/Emails
 * @author      WooThemes
 * @extends     WC_Email
 */
class WC_QD_donation_completed_email extends WC_Email {

	/**
	 * Constructor
	 */
	function __construct() {

		$this->id             =  WC_QD_DB.'donation_completed_email';
		$this->title          = __( 'Completed Donation', WC_QD_TXT);
29
		$this->description    = __( 'Order complete emails are sent to customers when their orders are marked completed and usually indicate that their orders have been shipped.', WC_QD_TXT );
Varun Sridharan's avatar
Varun Sridharan committed
30 31

		$this->heading        = __( 'Your Donation for {project_name} is complete', WC_QD_TXT);
32
		$this->subject        = __( 'Your {site_title} donation from {order_date} is complete', WC_QD_TXT );
Varun Sridharan's avatar
Varun Sridharan committed
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

		$this->template_html  = 'emails/donation-completed.php';
		$this->template_plain = 'emails/plain/donation-completed.php';
        $this->template_base = WC_QD_TEMPLATE;
        
		// Call parent constuctor
		parent::__construct();
	}

	/**
	 * Trigger.
	 */
	function trigger( $order_id ) {

		if ( $order_id ) {
			$this->object                  = wc_get_order( $order_id );
			$this->recipient               = $this->object->billing_email;

			$this->find['order-date']      = '{order_date}';
			$this->find['order-number']    = '{order_number}';
            $this->find['donation-project-name'] = '{project_name}';
            
            $order_id = $this->object->get_order_number();
            $project_id = WC_QD()->db()->get_project_id($order_id);
            $project_name = get_the_title($project_id);
            
			$this->replace['order-date']   = date_i18n( wc_date_format(), strtotime( $this->object->order_date ) );
			$this->replace['order-number'] = $this->object->get_order_number();
            $this->replace['donation-project-name'] = $project_name;
		}

		if ( ! $this->is_enabled() || ! $this->get_recipient() ) {
			return;
		}

		$this->send( $this->get_recipient(), $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments() );
	}

	/**
	 * get_subject function.
	 *
	 * @access public
	 * @return string
	 */
	function get_subject() {
		if ( ! empty( $this->object ) && $this->object->has_downloadable_item() ) {
			return $this->format_string( $this->subject_downloadable );
		} else {
			return $this->format_string( $this->subject );
		}
	}

	/**
	 * get_heading function.
	 *
	 * @access public
	 * @return string
	 */
	function get_heading() {
		if ( ! empty( $this->object ) && $this->object->has_downloadable_item() ) {
			return  $this->format_string( $this->heading_downloadable );
		} else {
			return $this->format_string( $this->heading );
		}
	}

	/**
	 * get_content_html function.
	 *
	 * @access public
	 * @return string
	 */
	function get_content_html() {
		ob_start();
		wc_get_template( $this->template_html, array(
			'order'         => $this->object,
			'email_heading' => $this->get_heading(),
			'sent_to_admin' => false,
			'plain_text'    => false
		) );
		return ob_get_clean();
	}

	/**
	 * Get content plain.
	 *
	 * @return string
	 */
	function get_content_plain() {
		ob_start();
		wc_get_template( $this->template_plain, array(
			'order'         => $this->object,
			'email_heading' => $this->get_heading(),
			'sent_to_admin' => false,
			'plain_text'    => true
		) );
		return ob_get_clean();
	}

	/**
	 * Initialise settings form fields.
	 */
	function init_form_fields() {
		$this->form_fields = array(
			'enabled' => array(
138
				'title'         => __( 'Enable/Disable', WC_QD_TXT ),
Varun Sridharan's avatar
Varun Sridharan committed
139
				'type'          => 'checkbox',
140
				'label'         => __( 'Enable this email notification', WC_QD_TXT ),
Varun Sridharan's avatar
Varun Sridharan committed
141 142 143
				'default'       => 'yes'
			),
			'subject' => array(
144
				'title'         => __( 'Subject', WC_QD_TXT ),
Varun Sridharan's avatar
Varun Sridharan committed
145
				'type'          => 'text',
146
				'description'   => sprintf( __( 'Defaults to <code>%s</code>', WC_QD_TXT ), $this->subject ),
Varun Sridharan's avatar
Varun Sridharan committed
147 148 149 150
				'placeholder'   => '',
				'default'       => ''
			),
			'heading' => array(
151
				'title'         => __( 'Email Heading', WC_QD_TXT ),
Varun Sridharan's avatar
Varun Sridharan committed
152
				'type'          => 'text',
153
				'description'   => sprintf( __( 'Defaults to <code>%s</code>', WC_QD_TXT ), $this->heading ),
Varun Sridharan's avatar
Varun Sridharan committed
154 155 156 157 158
				'placeholder'   => '',
				'default'       => ''
			),

            'email_type' => array(
159
				'title'         => __( 'Email type', WC_QD_TXT ),
Varun Sridharan's avatar
Varun Sridharan committed
160
				'type'          => 'select',
161
				'description'   => __( 'Choose which format of email to send.', WC_QD_TXT ),
Varun Sridharan's avatar
Varun Sridharan committed
162 163 164 165 166 167 168 169 170 171 172
				'default'       => 'html',
				'class'         => 'email_type wc-enhanced-select',
				'options'       => $this->get_email_type_options()
			)
		);
	}
}

endif;

return new WC_QD_donation_completed_email();