diff --git a/src/admin/api/dashboard.php b/src/admin/api/dashboard.php new file mode 100644 index 0000000..d5cdca8 --- /dev/null +++ b/src/admin/api/dashboard.php @@ -0,0 +1,36 @@ +count('clients', array('client_status' => 1)); + $count_clients = $DB->count('clients'); + $count_account = $DB->count('account', array('account_status' => 1)); + $count_accounts = $DB->count('account'); + $count_ssl = $DB->count('ssl'); + $count_ssls = $DB->count('ssl'); + $count_ticket = $DB->count('tickets', "`ticket_status`=0 OR `ticket_status`=2"); + $count_tickets = $DB->count('tickets'); + + $result = [ + "count_client" => $count_client, + "count_clients" => $count_clients, + "count_account" => $count_account, + "count_accounts" => $count_accounts, + "count_ssl" => $count_ssl, + "count_ssls" => $count_ssls, + "count_ticket" => $count_ticket, + "count_tickets" => $count_tickets + ]; + send_response(0, $result); + break; + default: + send_response(-4, null, 'No Act'); + break; +} diff --git a/src/admin/api/emails.php b/src/admin/api/emails.php new file mode 100755 index 0000000..05745de --- /dev/null +++ b/src/admin/api/emails.php @@ -0,0 +1,63 @@ + 0) { + $row = $DB->find('emails', '*', array('email_id' => $email_id), null, 1); + } else { + $row = null; + } + + if (!$row) send_response(-1, null, '记录不存在'); + send_response(0, $row); + break; + case 'list': + $where = " 1=1"; + $email_id = intval(post('email_id')); + $email_client_id = post('email_client_id'); + $email_subject = post('email_subject'); + $email_to = post('email_to'); + + if (!empty($email_id)) { + $where .= " AND `email_id`='{$email_id}'"; + } + if (!empty($email_client_id)) { + $where .= " AND `email_client_id`='{$email_client_id}'"; + } + if (!empty($email_subject)) { + $where .= " AND `email_subject` like '%{$email_subject}%'"; + } + if (!empty($email_to)) { + $where .= " AND `email_to` like '%{$email_to}%'"; + } + + $offset = intval(post('offset', 0)); + $limit = intval(post('limit', 10)); + $total = $DB->count('emails', $where); + + if ($total > 0) { + $rows = $DB->findAll('emails', 'email_id,email_client_id,email_subject,email_date,email_to,email_read', $where, "`email_id` DESC", "$offset,$limit"); + } else { + $rows = array(); + } + + // send_response(0, array('total' => $total, 'rows' => $rows)); + exit(json_encode(array('code' => 0, 'rows' => $rows, 'total' => $total))); + break; + default: + send_response(-4, null, 'No Act'); + break; +} diff --git a/src/admin/application.php b/src/admin/application.php index 0d0511b..79786b9 100755 --- a/src/admin/application.php +++ b/src/admin/application.php @@ -1,4 +1,7 @@ find('account', '*', array('account_id' => $account_id), null, 1); + +if (empty($AccountInfo)) { + setMessage('not found', 'danger'); + redirect('admin/accounts'); +} + +$PageInfo['title'] = 'Account Domains'; + +$AccountDomainList = $DB->findAll('account_domain', '*', array('domain_account_id' => $account_id)); diff --git a/src/admin/controllers/dashboard/view.php b/src/admin/controllers/dashboard/view.php index abcdc75..94e0342 100755 --- a/src/admin/controllers/dashboard/view.php +++ b/src/admin/controllers/dashboard/view.php @@ -1,14 +1,6 @@ count('clients', array('client_status' => 1)); -$count_clients = $DB->count('clients'); -$count_account = $DB->count('account', array('account_status' => 1)); -$count_accounts = $DB->count('account'); -$count_ssl = $DB->count('ssl'); -$count_ssls = $DB->count('ssl'); -$count_ticket = $DB->count('tickets', "`ticket_status`=0 OR `ticket_status`=2"); -$count_tickets = $DB->count('tickets'); $date = date("Y-m-d H:i:s"); $mysqlversion = $DB->getColumn("select VERSION()"); diff --git a/src/admin/emails.php b/src/admin/emails.php index 82f5f69..342638d 100755 --- a/src/admin/emails.php +++ b/src/admin/emails.php @@ -9,8 +9,4 @@ if (!in_array($action, array('list', 'view'))) { } require __DIR__ . '/controllers/emails/' . $action . '.php'; -require __DIR__ . '/views/header.php'; -require __DIR__ . '/views/navbar.php'; -require __DIR__ . '/views/sidebar.php'; require __DIR__ . '/views/emails/' . $action . '.php'; -require __DIR__ . '/views/footer.php'; diff --git a/src/admin/index.php b/src/admin/index.php index 5bf64c1..eca64f4 100755 --- a/src/admin/index.php +++ b/src/admin/index.php @@ -2,8 +2,4 @@ require_once __DIR__ . '/application.php'; require_once __DIR__ . '/controllers/dashboard/view.php'; -require_once __DIR__ . '/views/header.php'; -require_once __DIR__ . '/views/navbar.php'; -require_once __DIR__ . '/views/sidebar.php'; require_once __DIR__ . '/views/dashboard/view.php'; -require_once __DIR__ . '/views/footer.php'; diff --git a/src/admin/views/accounts/list.php b/src/admin/views/accounts/list.php index 73612f7..2864afb 100755 --- a/src/admin/views/accounts/list.php +++ b/src/admin/views/accounts/list.php @@ -31,8 +31,16 @@ 0): ?> - - + + + + + + + + + + diff --git a/src/admin/views/clients/details.php b/src/admin/views/clients/details.php index 1db015e..50efa63 100755 --- a/src/admin/views/clients/details.php +++ b/src/admin/views/clients/details.php @@ -30,37 +30,40 @@ - I18N('Last Name'); ?> + I18N('Last Name'); ?> - I18N('Email Address'); ?> + I18N('Email Address'); ?> - I18N('Phone Number'); ?> + I18N('Phone Number'); ?> - I18N('Billing Address'); ?> + I18N('Billing Address'); ?> - I18N('Company'); ?> + I18N('Company'); ?> - I18N('Country'); ?> + I18N('Country'); ?> - I18N('City'); ?> + I18N('City'); ?> - Postal Code + Postal Code - I18N('Hosting Accounts'); ?> + I18N('Hosting Accounts'); ?> + - I18N('SSL Certificates'); ?> + I18N('SSL Certificates'); ?> + - Support Tickets + Support Tickets + diff --git a/src/admin/views/clients/list.php b/src/admin/views/clients/list.php index e6e2ae9..f40e811 100755 --- a/src/admin/views/clients/list.php +++ b/src/admin/views/clients/list.php @@ -27,7 +27,9 @@ 0): ?> - + + + diff --git a/src/admin/views/dashboard/view.php b/src/admin/views/dashboard/view.php index 5d7e1f8..3286219 100755 --- a/src/admin/views/dashboard/view.php +++ b/src/admin/views/dashboard/view.php @@ -1,4 +1,13 @@ +
@@ -10,7 +19,7 @@
- / + /
客户数量
@@ -34,7 +43,7 @@
- / + /
账户数量
@@ -58,7 +67,7 @@
- / + /
工单数量
@@ -82,7 +91,7 @@
- / + /
证书数量
@@ -143,4 +152,42 @@ - \ No newline at end of file + + + + + + + + diff --git a/src/admin/views/emails/list.php b/src/admin/views/emails/list.php index 00dcf71..957bdcf 100755 --- a/src/admin/views/emails/list.php +++ b/src/admin/views/emails/list.php @@ -2,6 +2,13 @@ if (!defined('IN_CRONLITE')) { exit; } + +$PageInfo['rel'] = ''; + +require ROOT_ADMIN . '/views/header.php'; +require ROOT_ADMIN . '/views/navbar.php'; +require ROOT_ADMIN . '/views/sidebar.php'; + ?>
@@ -9,47 +16,100 @@ if (!defined('IN_CRONLITE')) {
  • I18N('Dashboard'); ?>
  • I18N('Emails List'); ?>
  • -
    -
    -
    - - I18N('add'); ?> - +
    +
    + +
    + +
    - -
    -
    - - - - - - - - - - - 0): ?> - - - - - - - - - - - - - - - - -
    IDI18N('Client'); ?>I18N('Title'); ?>I18N('Status'); ?>I18N('Date'); ?>I18N('Action'); ?>
    - I18N('details'); ?> -
    Nothing found
    -
    - +
    + +
    +
    + +
    +
    + +
    +
    +   + 重置  +
    +
    +
    + + + + + + + + + + diff --git a/src/admin/views/emails/view.php b/src/admin/views/emails/view.php index 2cf1f9d..7d217ef 100755 --- a/src/admin/views/emails/view.php +++ b/src/admin/views/emails/view.php @@ -2,9 +2,12 @@ if (!defined('IN_CRONLITE')) { exit; } + +require ROOT_ADMIN . '/views/header.php'; +require ROOT_ADMIN . '/views/navbar.php'; +require ROOT_ADMIN . '/views/sidebar.php'; + ?> - -
    -
    +
    - - - - + + + + + - + - - - - - - \ No newline at end of file + + + diff --git a/src/admin/views/header.php b/src/admin/views/header.php index cb943ad..ab49e84 100755 --- a/src/admin/views/header.php +++ b/src/admin/views/header.php @@ -13,24 +13,26 @@ - + <?php echo $PageInfo['title']; ?> - <?php echo $lang->I18N('AdminArea'); ?> - <?php echo $SiteConfig['site_name']; ?> - - - + + + - + + + + - diff --git a/src/admin/views/knowledgebase/list2.php b/src/admin/views/knowledgebase/list2.php index 5d8558a..2cbbc08 100755 --- a/src/admin/views/knowledgebase/list2.php +++ b/src/admin/views/knowledgebase/list2.php @@ -31,7 +31,7 @@
    - + diff --git a/src/admin/views/login/footer.php b/src/admin/views/login/footer.php index 8431a33..b117106 100755 --- a/src/admin/views/login/footer.php +++ b/src/admin/views/login/footer.php @@ -13,11 +13,6 @@
  • I18N('about'); ?>
  • -
  • -
  • -
    diff --git a/src/assets/bootstrap-table/1.20.2/bootstrap-table.min.js b/src/assets/bootstrap-table/1.20.2/bootstrap-table.min.js new file mode 100644 index 0000000..8c2a166 --- /dev/null +++ b/src/assets/bootstrap-table/1.20.2/bootstrap-table.min.js @@ -0,0 +1,10 @@ +/** + * bootstrap-table - An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation) + * + * @version v1.20.2 + * @homepage https://bootstrap-table.com + * @author wenzhixin (http://wenzhixin.net.cn/) + * @license MIT + */ + +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):(t="undefined"!=typeof globalThis?globalThis:t||self).BootstrapTable=e(t.jQuery)}(this,(function(t){"use strict";function e(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var i=e(t);function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){for(var i=0;it.length)&&(e=t.length);for(var i=0,n=new Array(e);i=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,r=!0,s=!1;return{s:function(){i=i.call(t)},n:function(){var t=i.next();return r=t.done,t},e:function(t){s=!0,a=t},f:function(){try{r||null==i.return||i.return()}finally{if(s)throw a}}}}var d="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},f=function(t){return t&&t.Math==Math&&t},p=f("object"==typeof globalThis&&globalThis)||f("object"==typeof window&&window)||f("object"==typeof self&&self)||f("object"==typeof d&&d)||function(){return this}()||Function("return this")(),g={},v=function(t){try{return!!t()}catch(t){return!0}},b=!v((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})),m=!v((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})),y=m,w=Function.prototype.call,S=y?w.bind(w):function(){return w.apply(w,arguments)},x={},k={}.propertyIsEnumerable,O=Object.getOwnPropertyDescriptor,C=O&&!k.call({1:2},1);x.f=C?function(t){var e=O(this,t);return!!e&&e.enumerable}:k;var T,P,I=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},A=m,$=Function.prototype,R=$.bind,E=$.call,j=A&&R.bind(E,E),F=A?function(t){return t&&j(t)}:function(t){return t&&function(){return E.apply(t,arguments)}},_=F,N=_({}.toString),D=_("".slice),V=function(t){return D(N(t),8,-1)},B=F,L=v,H=V,M=p.Object,U=B("".split),z=L((function(){return!M("z").propertyIsEnumerable(0)}))?function(t){return"String"==H(t)?U(t,""):M(t)}:M,q=p.TypeError,W=function(t){if(null==t)throw q("Can't call method on "+t);return t},G=z,K=W,Y=function(t){return G(K(t))},J=function(t){return"function"==typeof t},X=J,Q=function(t){return"object"==typeof t?null!==t:X(t)},Z=p,tt=J,et=function(t){return tt(t)?t:void 0},it=function(t,e){return arguments.length<2?et(Z[t]):Z[t]&&Z[t][e]},nt=F({}.isPrototypeOf),ot=it("navigator","userAgent")||"",at=p,rt=ot,st=at.process,lt=at.Deno,ct=st&&st.versions||lt&<.version,ht=ct&&ct.v8;ht&&(P=(T=ht.split("."))[0]>0&&T[0]<4?1:+(T[0]+T[1])),!P&&rt&&(!(T=rt.match(/Edge\/(\d+)/))||T[1]>=74)&&(T=rt.match(/Chrome\/(\d+)/))&&(P=+T[1]);var ut=P,dt=ut,ft=v,pt=!!Object.getOwnPropertySymbols&&!ft((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&dt&&dt<41})),gt=pt&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,vt=it,bt=J,mt=nt,yt=gt,wt=p.Object,St=yt?function(t){return"symbol"==typeof t}:function(t){var e=vt("Symbol");return bt(e)&&mt(e.prototype,wt(t))},xt=p.String,kt=function(t){try{return xt(t)}catch(t){return"Object"}},Ot=J,Ct=kt,Tt=p.TypeError,Pt=function(t){if(Ot(t))return t;throw Tt(Ct(t)+" is not a function")},It=Pt,At=function(t,e){var i=t[e];return null==i?void 0:It(i)},$t=S,Rt=J,Et=Q,jt=p.TypeError,Ft={exports:{}},_t=p,Nt=Object.defineProperty,Dt=function(t,e){try{Nt(_t,t,{value:e,configurable:!0,writable:!0})}catch(i){_t[t]=e}return e},Vt=Dt,Bt="__core-js_shared__",Lt=p[Bt]||Vt(Bt,{}),Ht=Lt;(Ft.exports=function(t,e){return Ht[t]||(Ht[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.22.5",mode:"global",copyright:"© 2014-2022 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.22.5/LICENSE",source:"https://github.com/zloirock/core-js"});var Mt=W,Ut=p.Object,zt=function(t){return Ut(Mt(t))},qt=zt,Wt=F({}.hasOwnProperty),Gt=Object.hasOwn||function(t,e){return Wt(qt(t),e)},Kt=F,Yt=0,Jt=Math.random(),Xt=Kt(1..toString),Qt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Xt(++Yt+Jt,36)},Zt=p,te=Ft.exports,ee=Gt,ie=Qt,ne=pt,oe=gt,ae=te("wks"),re=Zt.Symbol,se=re&&re.for,le=oe?re:re&&re.withoutSetter||ie,ce=function(t){if(!ee(ae,t)||!ne&&"string"!=typeof ae[t]){var e="Symbol."+t;ne&&ee(re,t)?ae[t]=re[t]:ae[t]=oe&&se?se(e):le(e)}return ae[t]},he=S,ue=Q,de=St,fe=At,pe=function(t,e){var i,n;if("string"===e&&Rt(i=t.toString)&&!Et(n=$t(i,t)))return n;if(Rt(i=t.valueOf)&&!Et(n=$t(i,t)))return n;if("string"!==e&&Rt(i=t.toString)&&!Et(n=$t(i,t)))return n;throw jt("Can't convert object to primitive value")},ge=ce,ve=p.TypeError,be=ge("toPrimitive"),me=function(t,e){if(!ue(t)||de(t))return t;var i,n=fe(t,be);if(n){if(void 0===e&&(e="default"),i=he(n,t,e),!ue(i)||de(i))return i;throw ve("Can't convert object to primitive value")}return void 0===e&&(e="number"),pe(t,e)},ye=me,we=St,Se=function(t){var e=ye(t,"string");return we(e)?e:e+""},xe=Q,ke=p.document,Oe=xe(ke)&&xe(ke.createElement),Ce=function(t){return Oe?ke.createElement(t):{}},Te=Ce,Pe=!b&&!v((function(){return 7!=Object.defineProperty(Te("div"),"a",{get:function(){return 7}}).a})),Ie=b,Ae=S,$e=x,Re=I,Ee=Y,je=Se,Fe=Gt,_e=Pe,Ne=Object.getOwnPropertyDescriptor;g.f=Ie?Ne:function(t,e){if(t=Ee(t),e=je(e),_e)try{return Ne(t,e)}catch(t){}if(Fe(t,e))return Re(!Ae($e.f,t,e),t[e])};var De={},Ve=b&&v((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype})),Be=p,Le=Q,He=Be.String,Me=Be.TypeError,Ue=function(t){if(Le(t))return t;throw Me(He(t)+" is not an object")},ze=b,qe=Pe,We=Ve,Ge=Ue,Ke=Se,Ye=p.TypeError,Je=Object.defineProperty,Xe=Object.getOwnPropertyDescriptor,Qe="enumerable",Ze="configurable",ti="writable";De.f=ze?We?function(t,e,i){if(Ge(t),e=Ke(e),Ge(i),"function"==typeof t&&"prototype"===e&&"value"in i&&ti in i&&!i.writable){var n=Xe(t,e);n&&n.writable&&(t[e]=i.value,i={configurable:Ze in i?i.configurable:n.configurable,enumerable:Qe in i?i.enumerable:n.enumerable,writable:!1})}return Je(t,e,i)}:Je:function(t,e,i){if(Ge(t),e=Ke(e),Ge(i),qe)try{return Je(t,e,i)}catch(t){}if("get"in i||"set"in i)throw Ye("Accessors not supported");return"value"in i&&(t[e]=i.value),t};var ei=De,ii=I,ni=b?function(t,e,i){return ei.f(t,e,ii(1,i))}:function(t,e,i){return t[e]=i,t},oi={exports:{}},ai=b,ri=Gt,si=Function.prototype,li=ai&&Object.getOwnPropertyDescriptor,ci=ri(si,"name"),hi={EXISTS:ci,PROPER:ci&&"something"===function(){}.name,CONFIGURABLE:ci&&(!ai||ai&&li(si,"name").configurable)},ui=J,di=Lt,fi=F(Function.toString);ui(di.inspectSource)||(di.inspectSource=function(t){return fi(t)});var pi,gi,vi,bi=di.inspectSource,mi=J,yi=bi,wi=p.WeakMap,Si=mi(wi)&&/native code/.test(yi(wi)),xi=Ft.exports,ki=Qt,Oi=xi("keys"),Ci=function(t){return Oi[t]||(Oi[t]=ki(t))},Ti={},Pi=Si,Ii=p,Ai=F,$i=Q,Ri=ni,Ei=Gt,ji=Lt,Fi=Ci,_i=Ti,Ni="Object already initialized",Di=Ii.TypeError,Vi=Ii.WeakMap;if(Pi||ji.state){var Bi=ji.state||(ji.state=new Vi),Li=Ai(Bi.get),Hi=Ai(Bi.has),Mi=Ai(Bi.set);pi=function(t,e){if(Hi(Bi,t))throw new Di(Ni);return e.facade=t,Mi(Bi,t,e),e},gi=function(t){return Li(Bi,t)||{}},vi=function(t){return Hi(Bi,t)}}else{var Ui=Fi("state");_i[Ui]=!0,pi=function(t,e){if(Ei(t,Ui))throw new Di(Ni);return e.facade=t,Ri(t,Ui,e),e},gi=function(t){return Ei(t,Ui)?t[Ui]:{}},vi=function(t){return Ei(t,Ui)}}var zi={set:pi,get:gi,has:vi,enforce:function(t){return vi(t)?gi(t):pi(t,{})},getterFor:function(t){return function(e){var i;if(!$i(e)||(i=gi(e)).type!==t)throw Di("Incompatible receiver, "+t+" required");return i}}},qi=v,Wi=J,Gi=Gt,Ki=b,Yi=hi.CONFIGURABLE,Ji=bi,Xi=zi.enforce,Qi=zi.get,Zi=Object.defineProperty,tn=Ki&&!qi((function(){return 8!==Zi((function(){}),"length",{value:8}).length})),en=String(String).split("String"),nn=oi.exports=function(t,e,i){if("Symbol("===String(e).slice(0,7)&&(e="["+String(e).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),i&&i.getter&&(e="get "+e),i&&i.setter&&(e="set "+e),(!Gi(t,"name")||Yi&&t.name!==e)&&Zi(t,"name",{value:e,configurable:!0}),tn&&i&&Gi(i,"arity")&&t.length!==i.arity&&Zi(t,"length",{value:i.arity}),i&&Gi(i,"constructor")&&i.constructor){if(Ki)try{Zi(t,"prototype",{writable:!1})}catch(t){}}else t.prototype=void 0;var n=Xi(t);return Gi(n,"source")||(n.source=en.join("string"==typeof e?e:"")),t};Function.prototype.toString=nn((function(){return Wi(this)&&Qi(this).source||Ji(this)}),"toString");var on=p,an=J,rn=ni,sn=oi.exports,ln=Dt,cn=function(t,e,i,n){var o=!!n&&!!n.unsafe,a=!!n&&!!n.enumerable,r=!!n&&!!n.noTargetGet,s=n&&void 0!==n.name?n.name:e;return an(i)&&sn(i,s,n),t===on?(a?t[e]=i:ln(e,i),t):(o?!r&&t[e]&&(a=!0):delete t[e],a?t[e]=i:rn(t,e,i),t)},hn={},un=Math.ceil,dn=Math.floor,fn=function(t){var e=+t;return e!=e||0===e?0:(e>0?dn:un)(e)},pn=fn,gn=Math.max,vn=Math.min,bn=function(t,e){var i=pn(t);return i<0?gn(i+e,0):vn(i,e)},mn=fn,yn=Math.min,wn=function(t){return t>0?yn(mn(t),9007199254740991):0},Sn=wn,xn=function(t){return Sn(t.length)},kn=Y,On=bn,Cn=xn,Tn=function(t){return function(e,i,n){var o,a=kn(e),r=Cn(a),s=On(n,r);if(t&&i!=i){for(;r>s;)if((o=a[s++])!=o)return!0}else for(;r>s;s++)if((t||s in a)&&a[s]===i)return t||s||0;return!t&&-1}},Pn={includes:Tn(!0),indexOf:Tn(!1)},In=Gt,An=Y,$n=Pn.indexOf,Rn=Ti,En=F([].push),jn=function(t,e){var i,n=An(t),o=0,a=[];for(i in n)!In(Rn,i)&&In(n,i)&&En(a,i);for(;e.length>o;)In(n,i=e[o++])&&(~$n(a,i)||En(a,i));return a},Fn=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],_n=jn,Nn=Fn.concat("length","prototype");hn.f=Object.getOwnPropertyNames||function(t){return _n(t,Nn)};var Dn={};Dn.f=Object.getOwnPropertySymbols;var Vn=it,Bn=hn,Ln=Dn,Hn=Ue,Mn=F([].concat),Un=Vn("Reflect","ownKeys")||function(t){var e=Bn.f(Hn(t)),i=Ln.f;return i?Mn(e,i(t)):e},zn=Gt,qn=Un,Wn=g,Gn=De,Kn=v,Yn=J,Jn=/#|\.prototype\./,Xn=function(t,e){var i=Zn[Qn(t)];return i==eo||i!=to&&(Yn(e)?Kn(e):!!e)},Qn=Xn.normalize=function(t){return String(t).replace(Jn,".").toLowerCase()},Zn=Xn.data={},to=Xn.NATIVE="N",eo=Xn.POLYFILL="P",io=Xn,no=p,oo=g.f,ao=ni,ro=cn,so=Dt,lo=function(t,e,i){for(var n=qn(e),o=Gn.f,a=Wn.f,r=0;ro;)for(var s,l=ko(arguments[o++]),c=a?To(yo(l),a(l)):yo(l),h=c.length,u=0;h>u;)s=c[u++],go&&!bo(r,l,s)||(i[s]=l[s]);return i}:Oo,Io=Po;ho({target:"Object",stat:!0,arity:2,forced:Object.assign!==Io},{assign:Io});var Ao={};Ao[ce("toStringTag")]="z";var $o="[object z]"===String(Ao),Ro=p,Eo=$o,jo=J,Fo=V,_o=ce("toStringTag"),No=Ro.Object,Do="Arguments"==Fo(function(){return arguments}()),Vo=Eo?Fo:function(t){var e,i,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(i=function(t,e){try{return t[e]}catch(t){}}(e=No(t),_o))?i:Do?Fo(e):"Object"==(n=Fo(e))&&jo(e.callee)?"Arguments":n},Bo=Vo,Lo=p.String,Ho=function(t){if("Symbol"===Bo(t))throw TypeError("Cannot convert a Symbol value to a string");return Lo(t)},Mo="\t\n\v\f\r                 \u2028\u2029\ufeff",Uo=W,zo=Ho,qo=F("".replace),Wo="[\t\n\v\f\r                 \u2028\u2029\ufeff]",Go=RegExp("^"+Wo+Wo+"*"),Ko=RegExp(Wo+Wo+"*$"),Yo=function(t){return function(e){var i=zo(Uo(e));return 1&t&&(i=qo(i,Go,"")),2&t&&(i=qo(i,Ko,"")),i}},Jo={start:Yo(1),end:Yo(2),trim:Yo(3)},Xo=hi.PROPER,Qo=v,Zo=Mo,ta=Jo.trim;ho({target:"String",proto:!0,forced:function(t){return Qo((function(){return!!Zo[t]()||"​…᠎"!=="​…᠎"[t]()||Xo&&Zo[t].name!==t}))}("trim")},{trim:function(){return ta(this)}});var ea=v,ia=function(t,e){var i=[][t];return!!i&&ea((function(){i.call(null,e||function(){return 1},1)}))},na=ho,oa=z,aa=Y,ra=ia,sa=F([].join),la=oa!=Object,ca=ra("join",",");na({target:"Array",proto:!0,forced:la||!ca},{join:function(t){return sa(aa(this),void 0===t?",":t)}});var ha=Ue,ua=function(){var t=ha(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e},da=v,fa=p.RegExp,pa=da((function(){var t=fa("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),ga=pa||da((function(){return!fa("a","y").sticky})),va={BROKEN_CARET:pa||da((function(){var t=fa("^r","gy");return t.lastIndex=2,null!=t.exec("str")})),MISSED_STICKY:ga,UNSUPPORTED_Y:pa},ba={},ma=b,ya=Ve,wa=De,Sa=Ue,xa=Y,ka=po;ba.f=ma&&!ya?Object.defineProperties:function(t,e){Sa(t);for(var i,n=xa(e),o=ka(e),a=o.length,r=0;a>r;)wa.f(t,i=o[r++],n[i]);return t};var Oa,Ca=it("document","documentElement"),Ta=Ue,Pa=ba,Ia=Fn,Aa=Ti,$a=Ca,Ra=Ce,Ea=Ci("IE_PROTO"),ja=function(){},Fa=function(t){return" + diff --git a/src/clientarea/views/header.php b/src/clientarea/views/header.php index 485176a..af5651e 100755 --- a/src/clientarea/views/header.php +++ b/src/clientarea/views/header.php @@ -21,7 +21,7 @@ - + + diff --git a/src/public/views/common/footer.php b/src/public/views/common/footer.php index ec486fb..711c89d 100755 --- a/src/public/views/common/footer.php +++ b/src/public/views/common/footer.php @@ -9,7 +9,7 @@ if (!defined('IN_CRONLITE')) {
    - - + + diff --git a/src/public/views/common/header.php b/src/public/views/common/header.php index 78923be..89e8a1a 100755 --- a/src/public/views/common/header.php +++ b/src/public/views/common/header.php @@ -30,8 +30,9 @@ if (!defined('IN_CRONLITE')) { - - + + + \ No newline at end of file