id = 'stock_alert_admin'; $this->title = __( 'Alert admin', 'woocommerce-product-stock-alert' ); $this->description = __( 'Administrator otrzyma alert, gdy klient zasubskrybuje produkt niedostępny w magazynie.', 'woocommerce-product-stock-alert' ); $this->template_html = 'emails/stock_alert_admin_email.php'; $this->template_plain = 'emails/plain/stock_alert_admin_email.php'; $this->template_base = $WOO_Product_Stock_Alert->plugin_path . 'templates/'; // Call parent constuctor parent::__construct(); } /** * trigger function. * * @access public * @return void */ function trigger( $recipient, $product_id, $customer_email ) { $this->recipient = $recipient; $this->product_id = $product_id; $this->customer_email = $customer_email; 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 email subject. * * @since 1.4.7 * @return string */ public function get_default_subject() { return apply_filters( 'woocommerce_email_subject_stock_alert', __( 'Klient zasubskrybował produkt na {site_title}', 'woocommerce-product-stock-alert'), $this->object ); } /** * Get email heading. * * @since 1.4.7 * @return string */ public function get_default_heading() { return apply_filters( 'woocommerce_email_heading_stock_alert', __( 'Witaj na {site_title}', 'woocommerce-product-stock-alert'),$this->object ); } /** * get_content_html function. * * @access public * @return string */ function get_content_html() { ob_start(); wc_get_template( $this->template_html, array( 'email_heading' => $this->get_heading(), 'product_id' => $this->product_id, 'customer_email' => $this->customer_email, 'sent_to_admin' => true, 'plain_text' => false, 'email' => $this, ), '', $this->template_base); return ob_get_clean(); } /** * get_content_plain function. * * @access public * @return string */ function get_content_plain() { ob_start(); wc_get_template( $this->template_plain, array( 'email_heading' => $this->get_heading(), 'product_id' => $this->product_id, 'customer_email' => $this->customer_email, 'sent_to_admin' => true, 'plain_text' => true ) ,'', $this->template_base ); return ob_get_clean(); } } endif;