PATH:
home
/
lab2454c
/
caimegroup.com
/
wp-content
/
plugins
/
user-registration
/
includes
/
admin
/
settings
/
emails
<?php /** * Configure Email * * @package UR_Settings_Reset_Password_Email */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if ( ! class_exists( 'UR_Settings_Reset_Password_Email', false ) ) : /** * UR_Settings_Reset_Password_Email Class. */ class UR_Settings_Reset_Password_Email { /** * UR_Settings_Reset_Password_Email Id. * * @var string */ public $id; /** * UR_Settings_Reset_Password_Email Title. * * @var string */ public $title; /** * UR_Settings_Reset_Password_Email Description. * * @var string */ public $description; /** * Constructor. */ public function __construct() { $this->id = 'reset_password_email'; $this->title = __( 'Reset Password Email', 'user-registration' ); $this->description = __( 'Email sent to the user when a user requests for reset password', 'user-registration' ); } /** * Get settings * * @return array */ public function get_settings() { /** * Filter to add the options on settings. * * @param array Options to be enlisted. */ $settings = apply_filters( 'user_registration_reset_password_email', array( 'title' => __( 'Emails', 'user-registration' ), 'sections' => array( 'reset_password_email' => array( 'title' => __( 'Reset Password Email', 'user-registration' ), 'type' => 'card', 'desc' => '', 'back_link' => ur_back_link( __( 'Return to emails', 'user-registration' ), admin_url( 'admin.php?page=user-registration-settings&tab=email' ) ), 'preview_link' => ur_email_preview_link( __( 'Preview', 'user-registration' ), $this->id ), 'settings' => array( array( 'title' => __( 'Enable this email', 'user-registration' ), 'desc' => __( 'Enable this to send an email to the user when they request for a password reset.', 'user-registration' ), 'id' => 'user_registration_enable_reset_password_email', 'default' => 'yes', 'type' => 'toggle', 'autoload' => false, ), array( 'title' => __( 'Email Subject', 'user-registration' ), 'desc' => __( 'The email subject you want to customize.', 'user-registration' ), 'id' => 'user_registration_reset_password_email_subject', 'type' => 'text', 'default' => __( 'Password Reset Email: {{blog_info}}', 'user-registration' ), 'css' => 'min-width: 350px;', 'desc_tip' => true, ), array( 'title' => __( 'Email Content', 'user-registration' ), 'desc' => __( 'The email content you want to customize.', 'user-registration' ), 'id' => 'user_registration_reset_password_email', 'type' => 'tinymce', 'default' => $this->ur_get_reset_password_email(), 'css' => 'min-width: 350px;', 'desc_tip' => true, ), ), ), ), ) ); /** * Filter to get the settings. * * @param array $settings Setting options to be enlisted. */ return apply_filters( 'user_registration_get_settings_' . $this->id, $settings ); } /** * Email Format. * * @return string $message Message content for reset password email. */ public function ur_get_reset_password_email() { /** * Filter to modify the message content for reset password email. * * @param string Message content for reset password email to be overridden. */ $message = apply_filters( 'user_registration_reset_password_email_message', sprintf( __( 'Someone has requested a password reset for the following account: <br/> SiteName: {{blog_info}} <br/> Username: {{username}} <br/> If this was a mistake, just ignore this email and nothing will happen. <br/> To reset your password, visit the following address: <br/> <a href="{{home_url}}/{{ur_login}}?action=rp&key={{key}}&login={{username}} " rel="noreferrer noopener" target="_blank">Click Here</a><br/> Thank You!', 'user-registration' ) ) ); return $message; } } endif; return new UR_Settings_Reset_Password_Email();
[-] class-ur-settings-registration-approved-email.php
[edit]
[-] class-ur-settings-registration-pending-email.php
[edit]
[+]
..
[-] class-ur-settings-confirm-email-address-change-email.php
[edit]
[-] class-ur-settings-approval-link-email.php
[edit]
[-] class-ur-settings-successfully-registered-email.php
[edit]
[-] class-ur-settings-email-confirmation.php
[edit]
[-] class-ur-settings-profile-details-changed-email.php
[edit]
[-] class-ur-settings-admin-email.php
[edit]
[-] class-ur-settings-reset-password-email.php
[edit]
[-] class-ur-settings-registration-denied-email.php
[edit]
[-] class-ur-settings-profile-details-updated-email.php
[edit]
[-] class-ur-settings-awaiting-admin-approval-email.php
[edit]