/* JS * scripts_new.js */ jQuery(document).ready(function(){ flg_apm.baseVals.win=$(window); flg_apm.baseVals.winHw=flg_apm.baseVals.win.height(); flg_apm.baseVals.winw=flg_apm.baseVals.win.width(); flg_apm.appHome.initClicks(); flg_apm.appTopBar.init(); flg_apm.initMainRollover(); f=$('#do_sending_test'); $('#adminmenuwrap').css('height',$('body').height()); //$(f).val(''); }); if(flg_apm==undefined){ flg_apm={}; } flg_apm.initMainRollover=function(){ $('.hasTooltip').off('mouseover').on('mouseover',function(){ $(this).tooltip(); $(this).tooltip('show'); }); $('.hasPopover').off('mouseover').on('mouseover',function(){ arg={ placement:'right' } $(this).popover(arg); $(this).popover('show') }); $('.hasPopover').off('mouseout').on('mouseout',function(){ $(this).popover('hide') }); } flg_apm.appHome=function(){ } flg_apm.appTopBar=function(){ } flg_apm.appHome.saveNeverSeeAnymore=function(id){ $.ajax({ url: ajaxurl , type: "POST", data: "action=apm_ajax_savesettings&do_ajax=save_never_see_anymore&id="+id, error: function(data){ flg_apm.setAlertPanel.addAlert('An error occured','An error occured, please try again...','error',3000); }, success: function(data){ } }); } // flg_apm.appHome.saveDoSendPollPro('no'); flg_apm.appHome.saveHidePollPro=function(){ $.ajax({ url: ajaxurl , type: "POST", data: "action=apm_ajax_savesettings&do_ajax=save_hidepollpro", error: function(data){ }, success: function(data){ } }); } flg_apm.appHome.saveDoSendPollPro=function(choice){ $.ajax({ // type: 'GET', url: 'http://apmcrm2013.weproduceweb.com/get_poll/', dataType: 'jsonp', data: { choice:choice }, crossDomain: true, success: function(data){ }, error: function(data){ // alert('error'); } }); } flg_apm.appHome.saveHideAskStat=function(){ $.ajax({ url: ajaxurl , type: "POST", data: "action=apm_ajax_savesettings&do_ajax=save_hideaskstat", error: function(data){ }, success: function(data){ } }); } flg_apm.appHome.saveDoSendStat=function(){ $.ajax({ // type: 'GET', url: 'http://apmcrm2013.weproduceweb.com/get_stats/', dataType: 'jsonp', data: { version:flg_apm.version }, crossDomain: true, success: function(data){ }, error: function(data){ // alert('error'); } }); } flg_apm.appHome.initClicks=function(){ $('.do_submit_settings_smtp').off('click').on('click',function(){ $('#settingformsmtp').submit(); }); $('.do_clear_cache').off('click').on('click',function(){ h=document.location.href; document.location.href=h+'&do_clearcache=true'; /* $.get(ajaxurl+'?action=apm_extensions&subaction=get_extensions_files&type=js&clearcache=false'); $.get(ajaxurl+'?action=apm_extensions&subaction=get_extensions_files&type=css&clearcache=false'); $.get(ajaxurl+'?action=apm_extensions&subaction=get_extensions_files&type=views&clearcache=false');*/ }); $('#apm_moduleslist span.btn a').off('mouseover').on('mouseover',function(){ i=$(this).find('i'); $(i).addClass('icon-white'); p=$(this).parents('span.btn'); $(p).addClass('btn-info'); }); $('#apm_moduleslist span.btn a').off('mouseout').on('mouseout',function(){ i=$(this).find('i'); $(i).removeClass('icon-white'); p=$(this).parents('span.btn'); $(p).removeClass('btn-info'); }); $('.do_submit_settings').off('click').on('click',function(){ p=$(this).parents('.settingform'); $(p).submit(); }); $('.topintrotext_close').off('click').on('click',function(){ p=$(this).parents('.well'); $(p).fadeOut(500); }); $('.topintrotext_closealways').off('click').on('click',function(){ p=$(this).parents('.well'); flg_apm.appHome.saveNeverSeeAnymore($(p).attr('id')); $(p).fadeOut(500); }); $('.do_send_stat').off('click').on('click',function(){ alert('Thanks, we will send info to our server and then you will not see this request anymore.'); p=$(this).parents('.ask_send_stat'); flg_apm.appHome.saveDoSendStat(); flg_apm.appHome.saveHideAskStat(); $(p).fadeOut(500); }); $('.dont_send_stat').off('click').on('click',function(){ alert('Ok, we will not send any info to our server and you will not see this request anymore.'); p=$(this).parents('.ask_send_stat'); flg_apm.appHome.saveHideAskStat(); $(p).fadeOut(500); }); $('.do_pollpro_yes').off('click').on('click',function(){ alert('Thanks, we will send your answer to our server, and then you will not see this request anymore.'); p=$(this).parents('.ask_send_pollpro'); flg_apm.appHome.saveDoSendPollPro('yes'); flg_apm.appHome.saveHidePollPro(); $(p).fadeOut(500); }); $('.do_pollpro_no').off('click').on('click',function(){ alert('Thanks, we will send your answer to our server, and then you will not see this request anymore.'); p=$(this).parents('.ask_send_pollpro'); flg_apm.appHome.saveDoSendPollPro('no'); flg_apm.appHome.saveHidePollPro(); $(p).fadeOut(500); }); $('.hide_pollpro').off('click').on('click',function(){ alert('Ok, we will not send any info to our server and you will not see this request anymore.'); p=$(this).parents('.ask_send_pollpro'); flg_apm.appHome.saveHidePollPro(); $(p).fadeOut(500); }); $('.apm_topnav_openmodgrid').off('click').on('click',function(){ p=$(this).parent(); mod=$(p).attr('data-module'); app=$(p).attr('data-app'); document.location.href='admin.php?page='+app+'-'+mod; }); $('.apm_topnav_addmodrec').off('click').on('click',function(){ p=$(this).parent(); mod=$(p).attr('data-module'); document.location.href='post-new.php?post_type='+mod; }); } flg_apm.appTopBar.init=function(){ if( flg_apm.baseVals.winw<=1042){ o=$('.hideIfWidthMax'); $(o).hide(); } // class="" } /** * * MD5 (Message-Digest Algorithm) * http://www.webtoolkit.info/ * **/ var MD5 = function (string) { function RotateLeft(lValue, iShiftBits) { return (lValue<>>(32-iShiftBits)); } function AddUnsigned(lX,lY) { var lX4,lY4,lX8,lY8,lResult; lX8 = (lX & 0x80000000); lY8 = (lY & 0x80000000); lX4 = (lX & 0x40000000); lY4 = (lY & 0x40000000); lResult = (lX & 0x3FFFFFFF)+(lY & 0x3FFFFFFF); if (lX4 & lY4) { return (lResult ^ 0x80000000 ^ lX8 ^ lY8); } if (lX4 | lY4) { if (lResult & 0x40000000) { return (lResult ^ 0xC0000000 ^ lX8 ^ lY8); } else { return (lResult ^ 0x40000000 ^ lX8 ^ lY8); } } else { return (lResult ^ lX8 ^ lY8); } } function F(x,y,z) { return (x & y) | ((~x) & z); } function G(x,y,z) { return (x & z) | (y & (~z)); } function H(x,y,z) { return (x ^ y ^ z); } function I(x,y,z) { return (y ^ (x | (~z))); } function FF(a,b,c,d,x,s,ac) { a = AddUnsigned(a, AddUnsigned(AddUnsigned(F(b, c, d), x), ac)); return AddUnsigned(RotateLeft(a, s), b); }; function GG(a,b,c,d,x,s,ac) { a = AddUnsigned(a, AddUnsigned(AddUnsigned(G(b, c, d), x), ac)); return AddUnsigned(RotateLeft(a, s), b); }; function HH(a,b,c,d,x,s,ac) { a = AddUnsigned(a, AddUnsigned(AddUnsigned(H(b, c, d), x), ac)); return AddUnsigned(RotateLeft(a, s), b); }; function II(a,b,c,d,x,s,ac) { a = AddUnsigned(a, AddUnsigned(AddUnsigned(I(b, c, d), x), ac)); return AddUnsigned(RotateLeft(a, s), b); }; function ConvertToWordArray(string) { var lWordCount; var lMessageLength = string.length; var lNumberOfWords_temp1=lMessageLength + 8; var lNumberOfWords_temp2=(lNumberOfWords_temp1-(lNumberOfWords_temp1 % 64))/64; var lNumberOfWords = (lNumberOfWords_temp2+1)*16; var lWordArray=Array(lNumberOfWords-1); var lBytePosition = 0; var lByteCount = 0; while ( lByteCount < lMessageLength ) { lWordCount = (lByteCount-(lByteCount % 4))/4; lBytePosition = (lByteCount % 4)*8; lWordArray[lWordCount] = (lWordArray[lWordCount] | (string.charCodeAt(lByteCount)<>>29; return lWordArray; }; function WordToHex(lValue) { var WordToHexValue="",WordToHexValue_temp="",lByte,lCount; for (lCount = 0;lCount<=3;lCount++) { lByte = (lValue>>>(lCount*8)) & 255; WordToHexValue_temp = "0" + lByte.toString(16); WordToHexValue = WordToHexValue + WordToHexValue_temp.substr(WordToHexValue_temp.length-2,2); } return WordToHexValue; }; function Utf8Encode(string) { string = string.replace(/\r\n/g,"\n"); var utftext = ""; for (var n = 0; n < string.length; n++) { var c = string.charCodeAt(n); if (c < 128) { utftext += String.fromCharCode(c); } else if((c > 127) && (c < 2048)) { utftext += String.fromCharCode((c >> 6) | 192); utftext += String.fromCharCode((c & 63) | 128); } else { utftext += String.fromCharCode((c >> 12) | 224); utftext += String.fromCharCode(((c >> 6) & 63) | 128); utftext += String.fromCharCode((c & 63) | 128); } } return utftext; }; var x=Array(); var k,AA,BB,CC,DD,a,b,c,d; var S11=7, S12=12, S13=17, S14=22; var S21=5, S22=9 , S23=14, S24=20; var S31=4, S32=11, S33=16, S34=23; var S41=6, S42=10, S43=15, S44=21; string = Utf8Encode(string); x = ConvertToWordArray(string); a = 0x67452301; b = 0xEFCDAB89; c = 0x98BADCFE; d = 0x10325476; for (k=0;k