Example #1
0
 public function rf_create($order_id = null, $description, $type)
 {
     $post_id = $this->rf_create_coupon($order_id, $description, $type);
     $title = get_the_title($post_id);
     $rf_id = base64_decode($_COOKIE['utm']);
     $user = get_user_by('id', $rf_id);
     // send mail
     if ($order_id) {
         // the person who is referred
         $order = new WC_Order($order_id);
         $to = $order->billing_email;
         $data = array('friend' => '', 'sponsor' => $user->user_email, 'coupon' => $title);
         $subj = rf_mail_replace(get_option('rf_invite_email_subject'), $data);
         $body = rf_mail_replace(get_option('rf_invite_email_heading') . '<br>' . get_option('rf_invite_email_content'), $data);
     } else {
         $data = array('friend' => '', 'sponsor' => '', 'coupon' => $title);
         $subj = rf_mail_replace(get_option('rf_reward_email_subject'), $data);
         $body = rf_mail_replace(get_option('rf_reward_email_heading') . '<br>' . get_option('rf_reward_email_content'), $data);
         $to = $user->user_email;
     }
     $headers = array('Content-Type: text/html; charset=UTF-8');
     add_filter('wp_mail_content_type', array($this, 'magenest_rf_set_html_content_type'));
     wp_mail($to, $subj, $body, $headers);
     remove_filter('wp_mail_content_type', array($this, 'magenest_rf_set_html_content_type'));
     return $post_id;
 }
Example #2
0
function rf_sponsor_form()
{
    //do_action('magenestnest_before_refer_friend_form');
    //do_action('rf_before_form');
    //add_action( 'rf_before_form', 'wc_print_notices', 10 );
    //wc_print_notices();
    //echo WC()->session->get( 'rf_notices');
    //WC()->session->set( 'rf_notices' , '');
    ?>


	<form class="[ js-form-invita-amigo ]" method="post" data-parsley-validate-invita-a-un-amigo>
		<p class="[ margin-bottom--xsmall no-padding ][ text-left ][ width-100 ][ no-margin ]">
			<label for="p-firstname" class="[]">Nombre de tu amigo<span class="required">*</span></label>
			<input class="[ margin-bottom--small ][ form-control input-text ][ width-100 ][ pull-none ]" value="<?php 
    echo isset($_POST['rf_firstname']) ? $_POST['rf_firstname'] : '';
    ?>
" type="text" name="rf_firstname" data-parsley-error-message="Por favor ingresa su nombre." required />
		</p>
		<p class="[ margin-bottom--xsmall no-padding ][ text-left ][ width-100 ][ no-margin ]">
			<label for="p-lastname" class="[]">Apellido de tu amigo<span class="required">*</span></label>
			<input class="[ margin-bottom--small ][ form-control input-text ][ width-100 ][ pull-none ]" value="<?php 
    echo isset($_POST['rf_lastname']) ? $_POST['rf_lastname'] : '';
    ?>
" type="text" name="rf_lastname" data-parsley-error-message="Por favor ingresa su apellido." required />
		</p>
		<p class="[ margin-bottom--xsmall no-padding ][ text-left ][ width-100 ][ no-margin ]">
			<label for="p-email" class="[]">Email de tu amigo<span class="required">*</span></label>
			<input class="[ margin-bottom--small ][ form-control input-text ][ width-100 ][ pull-none ]" value="<?php 
    echo isset($_POST['rf_email']) ? $_POST['rf_email'] : '';
    ?>
" type="text" name="rf_email" data-parsley-error-message="Por favor ingresa un correo válido." required />
		</p>
		<div class="[ text-center ]">
			<button type="submit" name="submit_invitation" class="[ btn btn-primary btn-hollow btn-sm ]">Invitar</button>
		</div>
	</form>




<?php 
    if (isset($_POST['submit_invitation'])) {
        global $wpdb;
        // check if emai has invited
        $invite_email = $_POST['rf_email'];
        if ($wpdb->get_row("SELECT * FROM {$wpdb->postmeta} WHERE meta_value = '{$invite_email}' AND meta_key = 'rf_invite_email'", OBJECT)) {
            wc_add_notice(__('Lo sentimos, ese email ya ha sido invitado.'), 'notice');
            return;
        }
        if ($_POST['rf_firstname'] == '') {
            wc_add_notice(__('First name is null !', 'mg_referfriend'), 'error');
            //echo 'First name is null !';
            exit;
        }
        if ($_POST['rf_lastname'] == '') {
            wc_add_notice(__('Last name is null !', 'mg_referfriend'), 'error');
            //echo 'Last name is null !';
            exit;
        }
        if ($_POST['rf_email'] == '') {
            wc_add_notice(__('Invalid email !', 'mg_referfriend'), 'error');
            //echo 'Email name is null !';
            exit;
        }
        $current_user = wp_get_current_user();
        $title = substr(number_format(time() * rand(), 0, '', ''), 0, 15);
        // Create post object
        $rf = array('post_title' => $title, 'post_status' => 'publish', 'post_author' => $current_user->ID, 'post_type' => 'mg_referfriend');
        // Insert the post into the database
        $post_id = wp_insert_post($rf);
        if ($post_id) {
            // Insert post meta value
            add_post_meta($post_id, 'rf_firstname', $_POST['rf_firstname']);
            add_post_meta($post_id, 'rf_lastname', $_POST['rf_lastname']);
            add_post_meta($post_id, 'rf_usage', 0);
            add_post_meta($post_id, 'rf_limit', 1);
            add_post_meta($post_id, 'rf_type', 1);
            add_post_meta($post_id, 'rf_invite_email', $_POST['rf_email']);
            add_post_meta($post_id, 'rf_reward_email', $current_user->user_email);
            add_post_meta($post_id, 'rf_coupon_type', get_option('rf_invite_coupon_type'));
            add_post_meta($post_id, 'rf_coupon_amount', get_option('rf_invite_coupon_amount', 1000));
            add_post_meta($post_id, 'rf_description', __('From: ', 'mg_referfriend') . $current_user->user_email . __(' To: ', 'mg_referfriend') . $_POST['rf_email']);
            if ($_POST['rf_message']) {
                add_post_meta($post_id, 'rf_message', $_POST['rf_message']);
            }
            $coupon_code = $title;
            // Code
            $amount = get_option('rf_invite_coupon_amount', 1000);
            // Amount
            $discount_type = get_option('rf_invite_coupon_type');
            // Type: fixed_cart, percent, fixed_product, percent_product
            $coupon = array('post_title' => $coupon_code, 'post_content' => '', 'post_status' => 'publish', 'post_type' => 'shop_coupon');
            $new_coupon_id = wp_insert_post($coupon);
            update_post_meta($new_coupon_id, 'coupon_amount', $amount);
            update_post_meta($new_coupon_id, 'discount_type', $discount_type);
            update_post_meta($new_coupon_id, 'individual_use', 'no');
            update_post_meta($new_coupon_id, 'product_ids', '');
            update_post_meta($new_coupon_id, 'exclude_product_ids', '');
            update_post_meta($new_coupon_id, 'usage_count', '0');
            update_post_meta($new_coupon_id, 'usage_limit', '1');
            update_post_meta($new_coupon_id, 'expiry_date', '');
            update_post_meta($new_coupon_id, 'apply_before_tax', 'yes');
            update_post_meta($new_coupon_id, 'free_shipping', 'no');
            // Send mail
            $data = array('friend' => $_POST['rf_firstname'] . ' ' . $_POST['rf_lastname'], 'sponsor' => $current_user->user_firstname . ' ' . $current_user->user_lastname, 'coupon' => $title, 'affiliate_message' => $_POST['rf_message'], 'coupon_value' => $amount);
            $subj = rf_mail_replace(get_option('rf_invite_email_subject'), $data);
            $body = rf_mail_replace(get_option('rf_invite_email_heading') . '<br>' . get_option('rf_invite_email_content'), $data);
            $headers = array('Content-Type: text/html; charset=UTF-8');
            add_filter('wp_mail_content_type', 'magenest_rf_set_html_content_type');
            wp_mail($_POST['rf_email'], $subj, $body, $headers);
            remove_filter('wp_mail_content_type', 'magenest_rf_set_html_content_type');
            //notice message
            wc_add_notice('¡Se le mandó la invitación a tu amig@!', 'success');
            if (WC()->session) {
                $notices = '¡Se le mandó la invitación a tu amig@!';
                WC()->session->set('rf_notices', $notices);
            }
        }
    }
}