xtxpatch v 0.1.1 it works fine

This commit is contained in:
asus
2024-03-31 19:59:20 +02:00
parent 995e230e32
commit 5d4be76102
10 changed files with 52 additions and 1527 deletions

View File

@@ -11,103 +11,6 @@ if (!defined('ABSPATH')) {
/*
* ../../../wordpress_docker/volumes/wp_volume/wp-includes/pluggable.php
* 2210 : $send_notification_to_user = apply_filters( 'wp_send_new_user_notification_to_user', true, $user );
*
*/
function send_registration_email_CIPF($send, $user) {
Plgntls::debug_infos();
$role_partner = Plgntls::ROLE_PARTNER;
$role_prof = Plgntls::ROLE_PROF;
if (user_can($user, $role_prof)) {
$send = is_email_registration_prof_CIPF();
}
else if (user_can($user, $role_partner)) {
$send = is_email_registration_partner_CIPF();
}
return $send;
}
add_filter( 'wp_send_new_user_notification_to_user', 'send_registration_email_CIPF', 10, 2);
/*
* use this filter to modify the message of the notification email
* you can use the specials custer expansions as $$<field>$$
* ../../../wordpress_docker/volumes/wp_volume/wp-content/plugins/easy-login-woocommerce/includes/class-xoo-el-form-handler.php
* 24 : add_filter( 'wp_new_user_notification_email', array( __CLASS__, 'newuser_notification_email' ), 20, 3 );
*
*/
function filter_regitration_email_CIPF($wp_new_user_notification_email, $user, $blogname) {
Plgntls::debug_infos();
$wp_new_user_notification_email['message'] = get_email_registration_CIPF();
return $wp_new_user_notification_email;
}
add_filter('wp_new_user_notification_email', 'filter_regitration_email_CIPF', 21, 3);
/*
* OPTIONS
*
*/
function set_email_registration_CIPF($email, $is_email_prof, $is_email_partner) {
Plgntls::debug_infos();
$option_email = Plgntls::OPTION_EMAIL;
$option_data = array();
$option_data['email'] = $email;
$option_data['is_email_prof'] = $is_email_prof;
$option_data['is_email_partner'] = $is_email_partner;
update_option($option_email['_name'], serialize($option_data), '', 'no');
}
function get_email_registration_option_CIPF() {
Plgntls::debug_infos();
$option_email = Plgntls::OPTION_EMAIL;
$email_option_serialized = get_option($option_email['_name']);
if (false === $email_option_serialized) {
add_option($option_email['_name'], serialize($option_email['_default']), '', 'no');
$email_option_serialized = get_option($option_email['_name']);
}
return unserialize($email_option_serialized);
}
function get_email_registration_CIPF() {
Plgntls::debug_infos();
$email_option = get_email_registration_option_CIPF();
return $email_option['email'];
}
function is_email_registration_prof_CIPF() {
Plgntls::debug_infos();
$email_option = get_email_registration_option_CIPF();
return $email_option['is_email_prof'];
}
function is_email_registration_partner_CIPF() {
Plgntls::debug_infos();
$email_option = get_email_registration_option_CIPF();
return $email_option['is_email_partner'];
}