2012-10-04 18:51:07 +00:00
|
|
|
<?php
|
2013-02-20 17:14:46 +00:00
|
|
|
|
2014-09-20 19:30:40 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
2013-02-20 17:14:46 +00:00
|
|
|
|
2017-02-16 11:46:01 +00:00
|
|
|
if ( ! class_exists( 'WC_Email_Customer_Reset_Password', false ) ) :
|
2013-08-02 10:17:56 +00:00
|
|
|
|
2012-10-04 18:51:07 +00:00
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Customer Reset Password.
|
2012-10-04 18:51:07 +00:00
|
|
|
*
|
|
|
|
* An email sent to the customer when they reset their password.
|
|
|
|
*
|
2015-03-27 15:15:40 +00:00
|
|
|
* @class WC_Email_Customer_Reset_Password
|
|
|
|
* @version 2.3.0
|
|
|
|
* @package WooCommerce/Classes/Emails
|
|
|
|
* @author WooThemes
|
|
|
|
* @extends WC_Email
|
2012-10-04 18:51:07 +00:00
|
|
|
*/
|
|
|
|
class WC_Email_Customer_Reset_Password extends WC_Email {
|
|
|
|
|
2016-01-05 18:36:44 +00:00
|
|
|
/**
|
|
|
|
* User login name.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2014-12-16 11:40:51 +00:00
|
|
|
public $user_login;
|
2012-10-04 18:51:07 +00:00
|
|
|
|
2016-01-05 18:36:44 +00:00
|
|
|
/**
|
|
|
|
* User email.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2014-12-16 11:40:51 +00:00
|
|
|
public $user_email;
|
2012-10-04 18:51:07 +00:00
|
|
|
|
2016-01-05 18:36:44 +00:00
|
|
|
/**
|
|
|
|
* Reset key.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2014-12-16 11:40:51 +00:00
|
|
|
public $reset_key;
|
2012-10-04 18:51:07 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Constructor.
|
2012-10-04 18:51:07 +00:00
|
|
|
*/
|
2016-04-26 16:26:17 +00:00
|
|
|
public function __construct() {
|
2012-10-04 18:51:07 +00:00
|
|
|
|
2015-03-27 15:15:40 +00:00
|
|
|
$this->id = 'customer_reset_password';
|
2017-05-15 21:34:37 +00:00
|
|
|
$this->customer_email = true;
|
|
|
|
|
2016-10-12 10:16:30 +00:00
|
|
|
$this->title = __( 'Reset password', 'woocommerce' );
|
2015-03-27 15:15:40 +00:00
|
|
|
$this->description = __( 'Customer "reset password" emails are sent when customers reset their passwords.', 'woocommerce' );
|
2012-10-04 18:51:07 +00:00
|
|
|
|
2015-03-27 15:15:40 +00:00
|
|
|
$this->template_html = 'emails/customer-reset-password.php';
|
|
|
|
$this->template_plain = 'emails/plain/customer-reset-password.php';
|
2012-10-04 18:51:07 +00:00
|
|
|
|
|
|
|
// Trigger
|
|
|
|
add_action( 'woocommerce_reset_password_notification', array( $this, 'trigger' ), 10, 2 );
|
|
|
|
|
2013-03-03 17:07:31 +00:00
|
|
|
// Call parent constructor
|
2012-10-04 18:51:07 +00:00
|
|
|
parent::__construct();
|
2017-05-16 01:09:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-06-02 17:25:05 +00:00
|
|
|
* Get email subject.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
* @return string
|
2017-05-16 01:09:24 +00:00
|
|
|
*/
|
2017-06-02 17:25:05 +00:00
|
|
|
public function get_default_subject() {
|
|
|
|
return __( 'Password reset for {site_title}', 'woocommerce' );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get email heading.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_default_heading() {
|
|
|
|
return __( 'Password reset instructions', 'woocommerce' );
|
2012-10-04 18:51:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-16 19:55:48 +00:00
|
|
|
* Trigger.
|
2016-01-05 18:36:44 +00:00
|
|
|
*
|
|
|
|
* @param string $user_login
|
|
|
|
* @param string $reset_key
|
2012-10-04 18:51:07 +00:00
|
|
|
*/
|
2016-04-26 16:26:17 +00:00
|
|
|
public function trigger( $user_login = '', $reset_key = '' ) {
|
2017-10-24 13:06:21 +00:00
|
|
|
$this->setup_locale();
|
|
|
|
|
2012-10-04 18:51:07 +00:00
|
|
|
if ( $user_login && $reset_key ) {
|
2014-05-30 09:42:47 +00:00
|
|
|
$this->object = get_user_by( 'login', $user_login );
|
|
|
|
$this->user_login = $user_login;
|
|
|
|
$this->reset_key = $reset_key;
|
|
|
|
$this->user_email = stripslashes( $this->object->user_email );
|
|
|
|
$this->recipient = $this->user_email;
|
2012-10-04 18:51:07 +00:00
|
|
|
}
|
|
|
|
|
2017-10-24 13:06:21 +00:00
|
|
|
if ( $this->is_enabled() && $this->get_recipient() ) {
|
|
|
|
$this->send( $this->get_recipient(), $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments() );
|
2014-05-30 09:42:47 +00:00
|
|
|
}
|
2012-10-04 18:51:07 +00:00
|
|
|
|
2017-06-02 17:25:05 +00:00
|
|
|
$this->restore_locale();
|
2012-10-04 18:51:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-05 18:36:44 +00:00
|
|
|
* Get content html.
|
2012-10-04 18:51:07 +00:00
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-04-26 16:26:17 +00:00
|
|
|
public function get_content_html() {
|
2015-12-04 13:39:57 +00:00
|
|
|
return wc_get_template_html( $this->template_html, array(
|
2012-10-04 18:51:07 +00:00
|
|
|
'email_heading' => $this->get_heading(),
|
2015-03-27 15:15:40 +00:00
|
|
|
'user_login' => $this->user_login,
|
|
|
|
'reset_key' => $this->reset_key,
|
|
|
|
'blogname' => $this->get_blogname(),
|
2014-01-08 15:04:49 +00:00
|
|
|
'sent_to_admin' => false,
|
2015-11-01 04:04:59 +00:00
|
|
|
'plain_text' => false,
|
2016-08-27 01:46:45 +00:00
|
|
|
'email' => $this,
|
2012-10-04 18:51:07 +00:00
|
|
|
) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-05 18:36:44 +00:00
|
|
|
* Get content plain.
|
2012-10-04 18:51:07 +00:00
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-04-26 16:26:17 +00:00
|
|
|
public function get_content_plain() {
|
2015-12-04 13:39:57 +00:00
|
|
|
return wc_get_template_html( $this->template_plain, array(
|
2012-10-04 18:51:07 +00:00
|
|
|
'email_heading' => $this->get_heading(),
|
2015-03-27 15:15:40 +00:00
|
|
|
'user_login' => $this->user_login,
|
|
|
|
'reset_key' => $this->reset_key,
|
|
|
|
'blogname' => $this->get_blogname(),
|
2014-01-08 15:04:49 +00:00
|
|
|
'sent_to_admin' => false,
|
2015-11-30 15:16:23 +00:00
|
|
|
'plain_text' => true,
|
2016-08-27 01:46:45 +00:00
|
|
|
'email' => $this,
|
2012-10-04 18:51:07 +00:00
|
|
|
) );
|
|
|
|
}
|
2013-08-02 10:17:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
endif;
|
|
|
|
|
2014-09-20 19:30:40 +00:00
|
|
|
return new WC_Email_Customer_Reset_Password();
|