MYFUNDBOX - Global Payments Simplified!
// Initialize Firebase - Tes Account - Abbas /* var config = { apiKey: "AIzaSyA4xgLeTKhIAaGhAtqYjyMnfh110S0L2g8", authDomain: "mobileauth-52c15.firebaseapp.com", databaseURL: "https://mobileauth-52c15.firebaseio.com", projectId: "mobileauth-52c15", storageBucket: "", messagingSenderId: "303963338578" }; */ // Initialize Firebase - Live MFB Account var config = { apiKey: "AIzaSyAXKYYG1-OtjwqpUA6GODQjhJP0sMzFLMk", authDomain: "myfundbox-165908.firebaseapp.com", databaseURL: "https://myfundbox-165908.firebaseio.com", projectId: "myfundbox-165908", storageBucket: "myfundbox-165908.appspot.com", messagingSenderId: "357401858543" }; firebase.initializeApp(config);
Subscriber not found
Beneficiary Not Found
Partner Not Found!!!!
Please Fill out this field
Please Enter an E-mail Address
Enter The Valid Payment Status
Showing
Entries
No matching records found
(Filtered From
Total Entries)
No records available
Hugo Perkins
var defaultEntrySize = 100; /* 1. defaultEntrySize value must be 10,25,50,100. 2. if deleted tables will not load 3. if changed all the datatables default entries count value will be changed. */ var totaldonation_msg = $("#totaldonation_msg").val(); var customrange_msg = $("#customrange_msg").val(); var apply_msg = $("#apply_msg").val(); var cancel_msg = $("#cancel_msg").val(); var startdate_msg = $("#startdate_msg").val(); var enddate_msg = $("#enddate_msg").val(); var today_msg = $("#today_msg").val(); var yesterday_msg = $("#yesterday_msg").val(); var last7days_msg = $("#last7days_msg").val(); var last30days_msg = $("#last30days_msg").val(); var thisMonth_msg = $("#thisMonth_msg").val(); var lastMonth_msg = $("#lastMonth_msg").val();
(function (c, l, a, r, i, t, y) { c[a] = c[a] || function () { (c[a].q = c[a].q || []).push(arguments); }; t = l.createElement(r); t.async = 1; t.src = "https://www.clarity.ms/tag/" + i; y = l.getElementsByTagName(r)[0]; y.parentNode.insertBefore(t, y); })(window, document, "clarity", "script", "7vq66yq30r");
//-1) { $(this).parents('li').addClass('active').siblings().removeClass('active'); $(this).addClass('active').siblings().removeClass('active'); } }); function customerPortfolio(fundId){ //customerPortfolioOld(fundId); customerPortfolioNew(fundId); } function customerPortfolioOld(fundId){ blockUI(); $.ajax({ type: 'post', url: 'CrowdFunding_Sub.jsf?actionMethod=CrowdFunding_Sub.xhtml:customerBean.redirectToCustomerPortfolio()', data: { fundId: fundId }, success: function(res) { unblockUI(); pageLoad('CustomerPortfolio.jsf'); } }); } function customerPortfolioNew(fundId){ blockUI(); $.ajax({ type: 'post', url: 'CrowdFunding_Sub.jsf?actionMethod=CrowdFunding_Sub.xhtml:customerBean2.encryptedUserIdFromFundID()', data: { fundId: fundId }, success: function(res) { var result=(res.split('\n', 1)); var encryptedUserId = result[0]; unblockUI(); pageLoad('MyPortal.jsf?uid='+encryptedUserId); } }); } function pageLoad(url){ //if(url.indexOf('Report.jsf') >= 0 || url.indexOf('MDB.jsf') >= 0 || url.indexOf('MembershipFieldsConfiguration.jsf') >= 0){ if(url.indexOf('MultipleDonationBox.jsf') >= 0 || url.indexOf('OneViewDonationBox.jsf') >= 0 || url.indexOf('MultipleDBox.jsf') >= 0 || url.indexOf('PaymentBox.jsf') >= 0 || url.indexOf('MDB.jsf') >= 0 || url.indexOf('OVD.jsf') >= 0 || url.indexOf('https://docs.myfundbox.com') >= 0){ openInNewTab(url); }else{ localStorage.setItem("lastPageMFB", url); blockUI(); parent.document.getElementsByName('iFrameName')[0].src = url; } } function updateLoaderPage(url){ if(url != null && url != '' && url.indexOf('.jsf') >= 0){ localStorage.setItem("lastPageMFB", url); } } function openInNewTab(url) { var redirectWindow = window.open(url, '_newtabmfb'); redirectWindow.location; } function openInNewTabAutoSync(urls){ blockUI(); var winRef = window.open(urls); var detectsUrl = setInterval(function(){ var a = winRef.document.createElement('a'); a.href = winRef.document.URL; var LinkChange = a.protocol + "//"+ a.host +"/"+urls; if (a.href != LinkChange) { parent.window.parent.location.reload(); pageLoad("Newstat.jsf?perfparam=true"); clearInterval(detectsUrl); }else if(winRef.closed){ location.reload(); }; }, 1000); } function resizeIFrame(){ var pageName = localStorage.getItem("lastPageMFB"); if(pageName == null || (pageName != null && pageName.indexOf('Donationdetails.jsf') == -1)){ var element = $("#iFrameName", window.parent.document); var contentHeight = element.contents().find('.page-container').height(); if(contentHeight && contentHeight < 600){ element.height(600); }else if(contentHeight && contentHeight > 600){ element.height(contentHeight+50); } } /* element.attr('scrolling','no');*/ } function resizeIFrameCustom(elementValue){ var element = $("#iFrameName", window.parent.document); var contentHeight = element.contents().find(elementValue).height(); //alert(elementValue+'\n'+contentHeight); if(contentHeight && contentHeight < 800){ element.height(800); }else if(contentHeight && contentHeight > 800){ element.height(contentHeight+200); } /* element.attr('scrolling','yes'); */ } function resizeIframeCustomThroughSideBar(){ var pageName = localStorage.getItem("lastPageMFB"); if(pageName != null && pageName.indexOf('Membership.jsf') == 0){ resizeIFrameCustomWithoutScroll(".page-container"); } } function resizeIFrameCustomWithoutScroll(elementValue){ var element = $("#iFrameName", window.parent.document); var contentHeight = element.contents().find(elementValue).height(); if(contentHeight && contentHeight < 800){ element.height(800); }else if(contentHeight && contentHeight > 800){ element.height(contentHeight+200); } /* element.attr('scrolling','no'); */ } function positionSweetAlert(id){ var height = window.scrollY + document.querySelector(id).getBoundingClientRect().top; if(height && height < 250){ height = 250; } $('.sweet-alert').attr('style', 'display:block;top:'+height+'px !important;'); document.querySelector(id).focus(); document.querySelector(id).scrollIntoView({ behavior: 'auto', block: 'center', inline: 'center' }); } function positionModalPopUp(id){ var height = window.scrollY + document.querySelector(id).getBoundingClientRect().top; if(height && height < 250) height = 250; $('.modal').attr('style', 'display:block;top:'+height/2+'px;'); } function positionModalPopUpDependsOnModalId(id, modalId){ var height = window.scrollY + document.querySelector(id).getBoundingClientRect().top; if(height && height < 250) height = 250; else height = height - 200; $(modalId).attr('style', 'display:block;top:'+height+'px;'); } function scrollToElement(elem){ if(elem) { $('html').scrollTop(elem.offset().top); $('html').scrollLeft(elem.offset().left); } } function changeToX(input) { if(input != undefined && input.length > 4){ var text = ""; for(var i=0; i
*",""); $('.styled').uniform(); } }); } $(document).on("keyup focus", "#filterlist", function(e) { var select = $(this).val(); var query = $('#filterlist').val(); console.info(select); if (e.which == 38 || e.which == 40) { console.info("working"); return ''; }else{ console.info("calling"); var dataList = document.getElementById('filter-datalist'); var input = document.getElementById('filterlist'); dataList.innerHTML = ''; if( (query.length > 3 && $('#showPersonal').val().localeCompare('true') == 0 && $('#searchOldId').val().localeCompare('false') == 0 && $('#searchOrphan').val().localeCompare('false') == 0 && $('#searchPartner').val().localeCompare('false') == 0) || $('#searchStatus').val().localeCompare('true') == 0 ){ console.info("Payment Status calling"); $.ajax({ type: 'post', url: "Donationdetails.jsf?actionMethod=Donationdetails.xhtml:filterBean.queryName()", data: {searchquery: query}, success: function (res) { res = res.substring(0, res.indexOf('\njsonends\n')); var ja = JSON.parse(res); dataList.innerHTML = ''; if(ja.length > 0){ ja.forEach(function(item) { var option = document.createElement('option'); option.value = item.value; option.id = item.id ; dataList.appendChild(option); }); }else if(query.length > 1){ if($('#searchOrphan').val().localeCompare('true') == 0){ new PNotify({ text: $('#orphanvalidationsearch').text().trim(), addclass: 'alert alert-warning alert-styled-right', delay: 1000 }); }else if($('#searchPartner').val().localeCompare('true') == 0){ new PNotify({ text: $('#partnervalidationsearch').text().trim(), addclass: 'alert alert-warning alert-styled-right', delay: 1000 }); }else if($('#searchStatus').val().localeCompare('true') == 0){ new PNotify({ text: $('#validatepaymentstatus').text().trim(), addclass: 'alert alert-warning alert-styled-right', delay: 1000 }); }else{ new PNotify({ text: $('#donorvalidationsearch').text().trim(), addclass: 'alert alert-warning alert-styled-right', delay: 1000 }); } } } }); } } }); $("#filterlist").bind('select change', function () { callsearch($(this).val()); }); function callsearch(val){ var opt = $('option[value="'+val.trim()+'"]'); var valid = opt.attr('id'); if(valid == null){ return ''; } if(valid.length > 0){ blockUI(); redirectToDetials(valid.trim()); unblockUI(); } } $(document).on("keypress", "#filterlist", function(e) { var searchValue = $('#filterlist').val(); if (e.which == 13 && searchValue != null && searchValue.trim().length > 0 && ( $('#showPersonal').val().localeCompare('false') == 0 || $('#searchOldId').val().localeCompare('true') == 0 || $('#searchPartner').val().localeCompare('true') == 0) && $('#searchOrphan').val().localeCompare('false') == 0) { blockUI(); // callsearch($(this).val().toLowerCase()); $.ajax({ type: 'post', url: "Donationdetails.jsf?actionMethod=Donationdetails.xhtml:filterBean.searchUsingEnter()", data: {searchquery: searchValue}, success: function (res) { res = res.substring(0, res.indexOf('\njsonends\n')); var subscriptionPaymentBox = $("#subscriptionPaymentBox").val(); if(res.localeCompare('true') == 0){ var filterVal = $('#filterlist').val().trim(); var oldId = $('#searchOldId').val(); var personal = $('#showPersonal').val(); if(subscriptionPaymentBox != null && subscriptionPaymentBox != '' && subscriptionPaymentBox == 'true'){ pageLoad('CustomerListe.jsf?filter=true&filterVal='+filterVal+'&oldId='+oldId+'&personal='+personal); }else{ pageLoad('spenderListe.jsf?filter=true&filterVal='+filterVal+'&oldId='+oldId+'&personal='+personal); } }else if(res.localeCompare('false') == 0 && searchValue.length > 1){ unblockUI(); if($('#searchOrphan').val().localeCompare('true') == 0){ new PNotify({ text: $('#orphanvalidationsearch').text().trim(), addclass: 'alert alert-warning alert-styled-right', delay: 1000 }); }else if($('#searchPartner').val().localeCompare('true') == 0){ new PNotify({ text: $('#partnervalidationsearch').text().trim(), addclass: 'alert alert-warning alert-styled-right', delay: 1000 }); }else if($('#searchStatus').val().localeCompare('true') == 0){ new PNotify({ text: "Enter the valid paymentStatus", addclass: 'alert alert-warning alert-styled-right', delay: 1000 }); }else{ new PNotify({ text: $('#donorvalidationsearch').text().trim(), addclass: 'alert alert-warning alert-styled-right', delay: 1000 }); } }else{ redirectToDonationDetials(res); } } }); }else if (e.which == 13 && searchValue != null && searchValue.trim().length > 0 && $('#searchOrphan').val().localeCompare('true') == 0 ) { blockUI(); $.ajax({ type: 'post', url: "Donationdetails.jsf?actionMethod=Donationdetails.xhtml:filterBean.searchUsingEnterForOrphan()", data: {searchquery: searchValue}, success: function (res) { res = res.substring(0, res.indexOf('\njsonendsOrphan\n')); if(res.localeCompare('true') == 0){ pageLoad('OrphansList.jsf?perfparam=true&searchFilter=true'); }else if(res.localeCompare('false') == 0 && searchValue.length > 1){ unblockUI(); if($('#searchOrphan').val().localeCompare('true') == 0){ new PNotify({ text: $('#orphanvalidationsearch').text().trim(), addclass: 'alert alert-warning alert-styled-right', delay: 1000 }); } } } }); } }); function updateSearchList(){ $("input[name=stacked-radio-left][value=false]").closest('span').removeClass('checked'); $("input[name=stacked-radio-left][value=true]").attr('checked', 'checked'); $("input[name=stacked-radio-left][value=true]").closest('span').addClass('checked'); } $('body').on('click', '.select2-container', function (e) { e.stopPropagation(); }); jQuery.extend(jQuery.validator.messages, { required: $('#validateMessageCom').text().trim(), email: $('#validateEmailIncor').text().trim() }); $("#sponsorLogin").removeClass('active'); $(document.body).on('hide.bs.modal,hidden.bs.modal', function () { setTimeout( function() { $('.pace-done').attr('style','padding-right:0px !important'); }, 300); }); function getUrlParam(parameter, defaultvalue){ var urlparameter = defaultvalue; if(window.location.href.indexOf(parameter) > -1){ urlparameter = getUrlVars()[parameter]; } return decodeURIComponent(urlparameter); } function getUrlVars() { var vars = {}; var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) { vars[key] = value; }); return vars; } function updateUserDetailsData(columnName, tableName, uniqueId, newValue) { $.ajax({ type: 'post', url: 'CrowdFunding_Sub.jsf?actionMethod=CrowdFunding_Sub.xhtml:filterBean.updatePersonalDetailsData()', data: { columnName: columnName, tableName: tableName, uniqueId: uniqueId, newValue: newValue }, success: function() { } }); } //MD-796 : need to show free trial applied information in some list when transaction done through plans window.onload = function() { setInterval("$('#closeToggel').css('display','')", 3000); }; //]]>
//()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/igm; return expr.test(email); } } function validateValueNumber(value){ if(value.length == 0){ return 0; }else{ value = value.replace(/[^+0-9]/, ''); value = value.replace(/\b0+/g, ""); } if(value.length == 0 || isNaN(value)){ return 0; }else{ return value; } } function ChangeOrReActivatePlan(type, groupId, ppId, encryptedUserId){ blockUI(); $.ajax({ type: 'post', url: 'UpgradePlan.jsf?actionMethod=UpgradePlan.xhtml:customerBean2.changePlan()', data: { type: type, groupId: groupId, ppId: ppId}, cache: false, success: function() { redirectMyportal(encryptedUserId); }, error: function (jqXHR, exception) { redirectMyportal(encryptedUserId); } }); } function redirectMyportal(encryptedUserId){ blockUI(); var param = ""; if(encryptedUserId != null && encryptedUserId.length){ param = "?uid="+encryptedUserId; } window.location = "MyPortal.jsf"+param; } function redirectMyportalC(encryptedUserId){ blockUI(); var param = ""; if(encryptedUserId != null && encryptedUserId.length){ param = "?uid="+encryptedUserId; } window.location = "MyPortalC.jsf"+param; } function deleteAccount(){ blockUI(); $.ajax({ type: 'post', url: 'CrowdFunding_Sub.jsf?actionMethod=CrowdFunding_Sub.xhtml:profileBean.deleteAccount()', success: function(res) { var result=(res.split('\n', 1)); var valid = result[0]; if(valid == 'true'){ logoutAfterDeletion(); } } }); } function logoutAfterDeletion(){ $.ajax({ type: 'post', url: '/Profile.jsf?actionMethod=Profile.xhtml:identity.logout()', success: function() { window.parent.location = "/login.jsf"; } }); } function websiteUrlWithHTTPS(websiteUrl) { if(websiteUrl != null && websiteUrl != '' && websiteUrl.trim().length > 0) { if(websiteUrl.startsWith("http://") || websiteUrl.startsWith("https://")) { return websiteUrl; } else { websiteUrl = 'https://'+websiteUrl; } } return websiteUrl; } var hexDigits = new Array("0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"); //Function to convert rgb color to hex format function rgb2hexConvert(rgb) { rgb = rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/); return "#" + hex(rgb[1]) + hex(rgb[2]) + hex(rgb[3]); } function hex(x) { return isNaN(x) ? "00" : hexDigits[(x - x % 16) / 16] + hexDigits[x % 16]; } function updateFundDetWaterWell(newValue, id, param, type) { $.ajax({ type: 'post', url: 'WaterWellDetails.jsf?actionMethod=WaterWellDetails.xhtml:qurbaniBean.updateFundWaterWell()', data: { newValue: newValue, fundDetId: id, param: param, type: type }, success: function() {} }); } //]]>
//
Welcome,
[email protected]
!
V 1.92
Upgrade
Free Trial
0
Free Trial
0
Active
0
Subscribed
0
Un-Subscribed
0
End Today
BID
OBID
Orphan
GID
OGID
Payment Status
Partner
OID
Subscription
Customers
Invoices
Paylinks
English
English
Deutsch
Turkish
French
Arabic
Swedish
Danish
Bosnian
Dutch
Italian
Spanish
Portuguese
Russian
Ukrainian
Polish
Japanese
Chinese
Hugo Perkins
My profile
Subscription
ChangeLog
Help Center
Video Tutorial
Logout
//
Dashboard
customers
Subscription
Payments
Plans
Tax Setup
Pay Link
Invoices
Subscription
Payouts
Configuration
SETTINGS
Manage Settings
Payment Gateway
Team
Import
E-Mail Notifications
Analytics
Tax & Coupons
You have
29 Days
left in your professional trial.
Manage subscription
Get feature
//= 0){ document.getElementsByName('iFrameName')[0].src = pageName; }else{ if(validateExpire != null && validateExpire.trim().length > 0 && validateExpire.includes("-") ){ swal({ title: $('#expiredText').val(), type: "warning", showCancelButton: false, confirmButtonText: $('#Sub_Upgrade_New').val(), }, function(isConfirm){ var subscriptionURL = $("#upgradePackageUrl").val(); pageLoad(subscriptionURL); }); }else{ document.getElementsByName('iFrameName')[0].src = "Newstat.jsf?perfparam=true"; } } if(validateExpire != null && validateExpire.trim().length > 0 && validateExpire.includes("-") ){ swal({ title: $('#expiredText').val(), type: "warning", showCancelButton: false, confirmButtonText: $('#Sub_Upgrade_New').val(), }, function(isConfirm){ var subscriptionURL = $("#upgradePackageUrl").val(); pageLoad(subscriptionURL); }); } $('a').click(function (event){ var url =$(this).attr('href'); if(url === undefined){ return; }else if(url.indexOf('identitylogout') >= 0){ LogOutPage(); }else if (url.indexOf('LangCodeSelection') >= 0) { var LangCode =$(this).attr('id'); $.ajax({ type: 'post', url: 'login.jsf?actionMethod=login.xhtml:languagesBean.languageLocaleCodeChanged()', data: {LangCode: LangCode}, async: false, cache: false, success: function() { window.location = 'home.jsf'; } }); }else if (url != '#') { event.preventDefault(); obtainSessionDetails(url); } }); function obtainSessionDetails(url){ blockUI(); $.ajax({ type: 'post', url: '/login.jsf?actionMethod=login.xhtml:personaldetailsBean.obtainSessionDetails()', cache: false, success: function(res) { var result=res.split('\n', 1); var parsedData = JSON.parse(result); var isSessionActive = parsedData.isSessionActive; var isUserRoleDonor = parsedData.isUserRoleDonor; if(isSessionActive){ if(isUserRoleDonor){ window.location = 'home.jsf'; }else{ pageLoad(url); } }else{ LogOutPage(); } unblockUI(); }, error: function (jqXHR, exception) { unblockUI(); } }); } function LogOutPage(){ $.ajax({ type: 'post', url: '/Profile.jsf?actionMethod=Profile.xhtml:identity.logout()', async: false, cache: false, success: function() { firebase.auth().signOut(); var redirectedpage = document.getElementById("logoutvalue").value; if(redirectedpage.includes("localhost")) window.location = redirectedpage+"/login.jsf"; else window.location = redirectedpage; } }); } $("#iFrameName").on("load", function () { resizeIFrame(); melayPo(); unblockUI(); }); $('.bck').backToTop({ iconName : 'fas fa-arrow-up', fxName : 'rightToLeft' }); function melayPo(){ $(".bck").trigger('click'); } function parentPnotify(message,classes){ try { if(window.self !== window.top){//Inside IFrame new window.parent.PNotify({ text: message, addclass: classes }); }else{//Outside IFrame new PNotify({ text: message, addclass: classes }); } } catch (e) { new PNotify({ text: message, addclass: classes }); } } function intercomCustomCall() { $(".intercomBtn").trigger('click'); } $('.styled').uniform(); //]]>
MYFUNDBOX - Global Payments Simplified!