PATH:
home
/
lab2454c
/
archfort.com
/
wp-content
/
plugins
/
wp-user-frontend
/
assets
/
js
(function($) { var subscription = { init: function() { $('input#wpuf-recuring-pay').on('click', this.showSubscriptionRecurring ); $('input#wpuf-trial-status').on('click', this.showSubscriptionPack ); $('.wpuf-coupon-info-wrap').on( 'click','a.wpuf-apply-coupon', this.couponApply ); $('.wpuf-coupon-info-wrap').on( 'click','a.wpuf-copon-show', this.couponShow ); $('.wpuf-coupon-info-wrap').on( 'click','a.wpuf-copon-cancel', this.couponCancel ); $('.wpuf-assing-pack-btn').on( 'click', this.showPackDropdown ); $('.wpuf-delete-pack-btn').on( 'click', this.deletePack ); $('.wpuf-disabled-link').click( this.packAlert ); //on change enable expiration check status this.changeExpirationFieldVisibility(':checkbox#wpuf-enable_post_expiration'); $('.wpuf-metabox-post_expiration').on('change',':checkbox#wpuf-enable_post_expiration',this.changeExpirationFieldVisibility); //on change expiration type drop down //this.setTimeExpiration('select#wpuf-expiration_time_type'); $('.wpuf-metabox-post_expiration').on('change','select#wpuf-expiration_time_type',this.setTimeExpiration); }, packAlert : function () { alert( wpuf_subscription.pack_notice ); }, showPackDropdown: function(e) { e.preventDefault(); var self = $(this), wrap = self.parents('.wpuf-user-subscription'), sub_dropdown = wrap.find('.wpuf-pack-dropdown'), sub_details = wrap.find('.wpuf-user-sub-info'), cancel_btn = wrap.find('.wpuf-cancel-pack'), add_btn = wrap.find('.wpuf-add-pack'); if ( sub_dropdown.attr( 'disabled' ) === 'disabled' ) { sub_dropdown.show().removeAttr('disabled'); sub_details.hide().attr('disabled', true ); cancel_btn.show(); add_btn.hide(); } else { sub_details.show().removeAttr('disabled'); sub_dropdown.hide().attr('disabled', true ); cancel_btn.hide(); add_btn.show(); } }, deletePack: function(e){ var self = $(this), wrap = self.parents('.wpuf-user-subscription'), sub_dropdown = wrap.find('.wpuf-pack-dropdown'), selected_sub = wrap.find( '#wpuf_sub_pack' ), userid = $(e.target).attr('data-userid'), packid = $(e.target).attr('data-packid'); wrap.find('.wpuf-delete-pack-btn').attr('disabled', true); wrap.css('opacity', 0.5); $.post( ajaxurl, { 'action' : 'wpuf_delete_user_package', 'userid' : userid, 'packid' : packid, 'wpuf_subscription_delete_nonce': wpuf_subs_vars.wpuf_subscription_delete_nonce }, function(data){ if(data){ wrap.css( 'opacity', 1 ); $('.wpuf-user-sub-info').remove(); $(e.target).remove(); selected_sub.val(-1); sub_dropdown.show(); } } ); }, couponCancel: function(e) { e.preventDefault(); var self = $(this), data = { action: 'coupon_cancel', _wpnonce: wpuf_frontend.nonce, pack_id: self.data('pack_id') }, coupon_field = self.parents('.wpuf-coupon-info-wrap').find('input.wpuf-coupon-field'); coupon_field.addClass('wpuf-coupon-field-spinner'); $.post( wpuf_frontend.ajaxurl, data, function( res ) { coupon_field.removeClass('wpuf-coupon-field-spinner'); if ( res.success ) { $('.wpuf-pack-inner' ).html( res.data.append_data ); $('.wpuf-coupon-id-field').val(''); var coupon_wrap = self.closest('.wpuf-copon-wrap'); coupon_wrap.hide(); coupon_wrap.siblings('.wpuf-copon-show').show(); $('.wpuf-subscription-success').html(''); $('.wpuf-subscription-error').html(''); } }); }, couponShow: function(e) { e.preventDefault(); var self = $(this); self.hide(); self.parents('.wpuf-coupon-info-wrap').find('.wpuf-copon-wrap').show(); }, couponApply: function(e) { e.preventDefault(); var self = $(this), coupon_field = self.parents('.wpuf-coupon-info-wrap').find('input.wpuf-coupon-field'), coupon = coupon_field.val(); if ( coupon === '' ) { $('.wpuf-subscription-error').html( wpuf_frontend.coupon_error ); return; } var data = { action: 'coupon_apply', _wpnonce: wpuf_frontend.nonce, coupon: coupon, pack_id: self.data('pack_id') }; if ( self.attr('disabled') === 'disabled' ) { //return; } self.attr( 'disabled', true ); coupon_field.addClass('wpuf-coupon-field-spinner'); $.post( wpuf_frontend.ajaxurl, data, function( res ) { coupon_field.removeClass('wpuf-coupon-field-spinner'); if ( res.success ) { $('.wpuf-pack-inner' ).html( res.data.append_data ); $('.wpuf-coupon-id-field').val( res.data.coupon_id ); if ( res.data.amount <= 0 ) { $('.wpuf-nullamount-hide').hide(); } $('.wpuf-subscription-success').html(res.data.message); $('.wpuf-subscription-error').html(''); } else { $('.wpuf-subscription-success').html(''); $('.wpuf-subscription-error').html(res.data.message); } }); }, showSubscriptionRecurring: function() { var self = $(this), wrap = self.parents('table.form-table'), pack_child = wrap.find('.wpuf-recurring-child'), trial_checkbox = wrap.find('input#wpuf-trial-status'), trial_child = wrap.find('.wpuf-trial-child'), expire_field = wrap.find('.wpuf-subcription-expire'); if ( self.is(':checked') ) { if ( trial_checkbox.is(':checked') ) { trial_child.show(); } pack_child.show(); expire_field.hide(); } else { trial_child.hide(); pack_child.hide(); expire_field.show(); } }, showSubscriptionPack: function() { var self = $(this), pack_status = self.closest('table.form-table').find('.wpuf-trial-child'); if ( self.is(':checked') ) { pack_status.show(); } else { pack_status.hide(); } }, setTimeExpiration: function(e){ var timeArray = { 'day' : 30, 'month' : 12, 'year': 100 }; $('#wpuf-expiration_time_value').html(''); var timeVal = e.target?$(e.target).val():$(e).val(); for(var time = 1; time <= timeArray[timeVal]; time++){ $('#wpuf-expiration_time_value').append('<option>'+ time +'</option>'); } }, changeExpirationFieldVisibility : function(e){ var checkbox_obj = e.target? $(e.target) : $(e); if ( checkbox_obj.is(':checked') ) { $('.wpuf_subscription_expiration_field').show(); } else { $('.wpuf_subscription_expiration_field').hide(); } } }; if ( typeof datepicker === 'function') { $('.wpuf-date-picker').datepicker({ dateFormat: "yy-mm-dd" }); } subscription.init(); })(jQuery);
[-] jquery.validate.min.js
[edit]
[-] metabox-tabs.js
[edit]
[+]
admin
[-] wpuf-tmc-button.js
[edit]
[-] admin-profile-subs.js
[edit]
[-] wpuf-form-builder-mixins.js
[edit]
[+]
..
[-] wpuf-login-widget.js
[edit]
[-] subscriptions.js
[edit]
[-] jquery-ui-timepicker-addon.js
[edit]
[-] jquery.smallipop-0.4.0.min.js
[edit]
[-] admin-shortcode.js
[edit]
[-] upload.js
[edit]
[+]
jquery-blockui
[-] wpuf-form-builder-components.js
[edit]
[-] conditional.js
[edit]
[-] wpuf-form-builder.js
[edit]
[-] frontend-form.js
[edit]
[-] upload.min.js
[edit]
[+]
selectWPUF
[-] chosen.jquery.js
[edit]
[-] wpuf-form-builder-wpuf-forms.js
[edit]
[-] billing-address.js
[edit]
[-] wpuf-admin-tools.js
[edit]
[-] frontend-form.min.js
[edit]
[-] countries.json
[edit]
[-] wpuf-admin.js
[edit]