├── .htaccess ├── README.md ├── admin ├── index.php ├── static │ ├── dashboard.js │ ├── index.php │ └── style.css └── system │ ├── ads.php │ ├── blog.php │ ├── domains.php │ ├── edit.php │ ├── emails.php │ ├── footer.php │ ├── header.php │ ├── index.php │ ├── languages.php │ ├── page.php │ ├── payments.php │ ├── plans.php │ ├── settings.php │ ├── subscription.php │ ├── themes.php │ ├── tools.php │ ├── urls.php │ └── users.php ├── composer.json ├── composer.lock ├── content ├── 10_5614ccf87278dffdcbe10337bd4574a9b55f4d88_mycv.pdf ├── 10_903eb46e0287e7b91e92981199c634daeb223fe3_my_cv.pdf ├── 12_0dd85c5ed563d3b11bfa5fef32ec7ab3b7b24b8a_1.png ├── 12_38e6804de0f7832b768126a2fdca325cc4a13bc3_3.jpeg ├── 12_6eaad880cf7f5b19dff366816d0d549e6d009db4_2.png ├── 1_a060a4f58b6c6b27ef9f38965efaf540bb303c32_carddavtestmoodofthemoon.com.mobileconfig ├── 1_abb156cc3e425e96be0a51171469297bdde26c8a_cpanellogotiny.png ├── 1_add57a257eb5af7c802963d259cb01bf8e9f0fed_caldavtestmoodofthemoon.com.mobileconfig ├── 1_d4e143ea548bd625237cb3a3d0bb52dbacadbe64_emailtestmoodofthemoon.com.mobileconfig ├── 3_a060a4f58b6c6b27ef9f38965efaf540bb303c32_carddavtestmoodofthemoon.com.mobileconfig ├── 3_abb156cc3e425e96be0a51171469297bdde26c8a_cpanellogotiny.png ├── 3_add57a257eb5af7c802963d259cb01bf8e9f0fed_caldavtestmoodofthemoon.com.mobileconfig ├── 3_d4e143ea548bd625237cb3a3d0bb52dbacadbe64_emailtestmoodofthemoon.com.mobileconfig └── index.php ├── includes ├── API.class.php ├── Admin.class.php ├── App.class.php ├── AutoUpdate.class.php ├── Database.class.php ├── Main.class.php ├── Short.class.php ├── User.class.php ├── analytics.php ├── config.php ├── core.php ├── index.php ├── languages │ ├── index.php │ └── lang_sample.php └── library │ ├── 2FA.load.php │ ├── Cache.class.php │ ├── Paypal.class.php │ ├── Recaptcha.php │ ├── Solvemedia.php │ ├── Sonata │ ├── GoogleAuthenticator │ │ ├── FixedBitNotation.php │ │ ├── GoogleAuthenticator.php │ │ ├── GoogleAuthenticatorInterface.php │ │ ├── GoogleQrUrl.php │ │ ├── RuntimeException.php │ │ └── index.php │ └── index.php │ ├── Stripe.load.php │ ├── Stripe │ ├── Account.php │ ├── AlipayAccount.php │ ├── ApiOperations │ │ ├── All.php │ │ ├── Create.php │ │ ├── Delete.php │ │ ├── NestedResource.php │ │ ├── Request.php │ │ ├── Retrieve.php │ │ └── Update.php │ ├── ApiRequestor.php │ ├── ApiResource.php │ ├── ApiResponse.php │ ├── ApplePayDomain.php │ ├── ApplicationFee.php │ ├── ApplicationFeeRefund.php │ ├── Balance.php │ ├── BalanceTransaction.php │ ├── BankAccount.php │ ├── BitcoinReceiver.php │ ├── BitcoinTransaction.php │ ├── Card.php │ ├── Charge.php │ ├── Collection.php │ ├── CountrySpec.php │ ├── Coupon.php │ ├── Customer.php │ ├── Dispute.php │ ├── EphemeralKey.php │ ├── Error │ │ ├── Api.php │ │ ├── ApiConnection.php │ │ ├── Authentication.php │ │ ├── Base.php │ │ ├── Card.php │ │ ├── Idempotency.php │ │ ├── InvalidRequest.php │ │ ├── OAuth │ │ │ ├── InvalidClient.php │ │ │ ├── InvalidGrant.php │ │ │ ├── InvalidRequest.php │ │ │ ├── InvalidScope.php │ │ │ ├── OAuthBase.php │ │ │ ├── UnsupportedGrantType.php │ │ │ └── UnsupportedResponseType.php │ │ ├── Permission.php │ │ ├── RateLimit.php │ │ └── SignatureVerification.php │ ├── Event.php │ ├── ExchangeRate.php │ ├── FileUpload.php │ ├── HttpClient │ │ ├── ClientInterface.php │ │ └── CurlClient.php │ ├── Invoice.php │ ├── InvoiceItem.php │ ├── LoginLink.php │ ├── OAuth.php │ ├── Order.php │ ├── OrderReturn.php │ ├── Payout.php │ ├── Plan.php │ ├── Product.php │ ├── Recipient.php │ ├── RecipientTransfer.php │ ├── Refund.php │ ├── SKU.php │ ├── SingletonApiResource.php │ ├── Source.php │ ├── SourceTransaction.php │ ├── Stripe.php │ ├── StripeObject.php │ ├── Subscription.php │ ├── SubscriptionItem.php │ ├── ThreeDSecure.php │ ├── Token.php │ ├── Topup.php │ ├── Transfer.php │ ├── TransferReversal.php │ ├── Util │ │ ├── AutoPagingIterator.php │ │ ├── DefaultLogger.php │ │ ├── LoggerInterface.php │ │ ├── RandomGenerator.php │ │ ├── RequestOptions.php │ │ ├── Set.php │ │ └── Util.php │ ├── Webhook.php │ ├── WebhookSignature.php │ └── ca-certificates.crt │ ├── auth │ ├── Facebook │ │ ├── Authentication │ │ │ ├── AccessToken.php │ │ │ ├── AccessTokenMetadata.php │ │ │ └── OAuth2Client.php │ │ ├── Exceptions │ │ │ ├── FacebookAuthenticationException.php │ │ │ ├── FacebookAuthorizationException.php │ │ │ ├── FacebookClientException.php │ │ │ ├── FacebookOtherException.php │ │ │ ├── FacebookResponseException.php │ │ │ ├── FacebookResumableUploadException.php │ │ │ ├── FacebookSDKException.php │ │ │ ├── FacebookServerException.php │ │ │ └── FacebookThrottleException.php │ │ ├── Facebook.php │ │ ├── FacebookApp.php │ │ ├── FacebookBatchRequest.php │ │ ├── FacebookBatchResponse.php │ │ ├── FacebookClient.php │ │ ├── FacebookRequest.php │ │ ├── FacebookResponse.php │ │ ├── FileUpload │ │ │ ├── FacebookFile.php │ │ │ ├── FacebookResumableUploader.php │ │ │ ├── FacebookTransferChunk.php │ │ │ ├── FacebookVideo.php │ │ │ └── Mimetypes.php │ │ ├── GraphNodes │ │ │ ├── Birthday.php │ │ │ ├── Collection.php │ │ │ ├── GraphAchievement.php │ │ │ ├── GraphAlbum.php │ │ │ ├── GraphApplication.php │ │ │ ├── GraphCoverPhoto.php │ │ │ ├── GraphEdge.php │ │ │ ├── GraphEvent.php │ │ │ ├── GraphGroup.php │ │ │ ├── GraphList.php │ │ │ ├── GraphLocation.php │ │ │ ├── GraphNode.php │ │ │ ├── GraphNodeFactory.php │ │ │ ├── GraphObject.php │ │ │ ├── GraphObjectFactory.php │ │ │ ├── GraphPage.php │ │ │ ├── GraphPicture.php │ │ │ ├── GraphSessionInfo.php │ │ │ └── GraphUser.php │ │ ├── Helpers │ │ │ ├── FacebookCanvasHelper.php │ │ │ ├── FacebookJavaScriptHelper.php │ │ │ ├── FacebookPageTabHelper.php │ │ │ ├── FacebookRedirectLoginHelper.php │ │ │ └── FacebookSignedRequestFromInputHelper.php │ │ ├── Http │ │ │ ├── GraphRawResponse.php │ │ │ ├── RequestBodyInterface.php │ │ │ ├── RequestBodyMultipart.php │ │ │ └── RequestBodyUrlEncoded.php │ │ ├── HttpClients │ │ │ ├── FacebookCurl.php │ │ │ ├── FacebookCurlHttpClient.php │ │ │ ├── FacebookGuzzleHttpClient.php │ │ │ ├── FacebookHttpClientInterface.php │ │ │ ├── FacebookStream.php │ │ │ ├── FacebookStreamHttpClient.php │ │ │ ├── HttpClientsFactory.php │ │ │ └── certs │ │ │ │ └── DigiCertHighAssuranceEVRootCA.pem │ │ ├── PersistentData │ │ │ ├── FacebookMemoryPersistentDataHandler.php │ │ │ ├── FacebookSessionPersistentDataHandler.php │ │ │ ├── PersistentDataFactory.php │ │ │ └── PersistentDataInterface.php │ │ ├── PseudoRandomString │ │ │ ├── McryptPseudoRandomStringGenerator.php │ │ │ ├── OpenSslPseudoRandomStringGenerator.php │ │ │ ├── PseudoRandomStringGeneratorFactory.php │ │ │ ├── PseudoRandomStringGeneratorInterface.php │ │ │ ├── PseudoRandomStringGeneratorTrait.php │ │ │ ├── RandomBytesPseudoRandomStringGenerator.php │ │ │ └── UrandomPseudoRandomStringGenerator.php │ │ ├── SignedRequest.php │ │ ├── Url │ │ │ ├── FacebookUrlDetectionHandler.php │ │ │ ├── FacebookUrlManipulator.php │ │ │ └── UrlDetectionInterface.php │ │ ├── autoload.php │ │ └── polyfills.php │ ├── Twitter │ │ ├── Config.php │ │ ├── Consumer.php │ │ ├── HmacSha1.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── SignatureMethod.php │ │ ├── Token.php │ │ ├── TwitterOAuth.php │ │ ├── TwitterOAuthException.php │ │ ├── Util.php │ │ ├── Util │ │ │ └── JsonDecoder.php │ │ ├── autoload.php │ │ └── cacert.pem │ ├── autoload.php │ ├── google.php │ └── index.php │ ├── cert │ ├── api_cert_chain.crt │ └── index.php │ ├── class.smtp.php │ ├── geoip │ ├── GeoIP.mmdb │ ├── MaxMind │ │ └── Db │ │ │ ├── Reader.php │ │ │ └── Reader │ │ │ ├── Decoder.php │ │ │ ├── InvalidDatabaseException.php │ │ │ ├── Metadata.php │ │ │ └── Util.php │ ├── autoload.php │ └── index.php │ ├── index.php │ ├── phpPass.class.php │ ├── phpmailer │ ├── PHPMailerAutoload.php │ ├── class.phpmailer.php │ ├── class.phpmaileroauth.php │ ├── class.phpmaileroauthgoogle.php │ ├── class.pop3.php │ ├── class.smtp.php │ ├── extras │ │ ├── EasyPeasyICS.php │ │ ├── README.md │ │ ├── htmlfilter.php │ │ └── ntlm_sasl_client.php │ ├── get_oauth_token.php │ ├── index.php │ └── language │ │ ├── phpmailer.lang-am.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ └── xmlapi.php ├── index.php ├── sitemap.php ├── static ├── application.fn.js ├── application.js ├── bookmarklet.js ├── bootstrap.min.js ├── css │ ├── bootstrap.min.css │ ├── components.min.css │ ├── cookieconsent.min.css │ ├── datepicker.min.css │ ├── fa-all.min.css │ ├── img │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── flat.png │ │ ├── flat@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── index.php │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.png │ │ └── yellow@2x.png │ └── index.php ├── detect.app.js ├── email_22.eml ├── email_28.eml ├── email_29.eml ├── email_35.eml ├── email_36.eml ├── email_37.eml ├── email_38.eml ├── email_39.eml ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── index.php ├── globe.png ├── img │ ├── Thumbs.db │ ├── download.png │ ├── index.php │ ├── powered_by_stripe.png │ └── upload.png ├── index.php ├── jShortener.js ├── js │ ├── Chart.min.js │ ├── autocomplete.min.js │ ├── chosen.jquery.min.js │ ├── chosen.min.js │ ├── clipboard.min.js │ ├── cookieconsent.min.js │ ├── datepicker.min.js │ ├── excanvas.js │ ├── flot.js │ ├── icheck.min.js │ ├── index.php │ ├── jquery.min.js │ ├── jvector.js │ ├── jvector.world.js │ └── pace.min.js ├── loader.gif ├── noscreen.png ├── server.js ├── ubold │ ├── css │ │ ├── app.css │ │ ├── app.min.css │ │ ├── app.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css.map │ │ ├── custom.css │ │ ├── custom_bootstrap.min.css │ │ ├── icons.css │ │ ├── icons.min.css │ │ └── icons.min.css.map │ ├── data │ │ └── jsgrid.json │ ├── fonts │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ ├── Simple-Line-Icons.woff2 │ │ ├── cerebrisans-bold.eot │ │ ├── cerebrisans-bold.svg │ │ ├── cerebrisans-bold.ttf │ │ ├── cerebrisans-bold.woff │ │ ├── cerebrisans-bold.woff2 │ │ ├── cerebrisans-light.eot │ │ ├── cerebrisans-light.svg │ │ ├── cerebrisans-light.ttf │ │ ├── cerebrisans-light.woff │ │ ├── cerebrisans-light.woff2 │ │ ├── cerebrisans-medium.eot │ │ ├── cerebrisans-medium.svg │ │ ├── cerebrisans-medium.ttf │ │ ├── cerebrisans-medium.woff │ │ ├── cerebrisans-medium.woff2 │ │ ├── cerebrisans-regular.eot │ │ ├── cerebrisans-regular.svg │ │ ├── cerebrisans-regular.ttf │ │ ├── cerebrisans-regular.woff │ │ ├── cerebrisans-regular.woff2 │ │ ├── cerebrisans-semibold.eot │ │ ├── cerebrisans-semibold.svg │ │ ├── cerebrisans-semibold.ttf │ │ ├── cerebrisans-semibold.woff │ │ ├── cerebrisans-semibold.woff2 │ │ ├── dripicons-v2.eot │ │ ├── dripicons-v2.svg │ │ ├── dripicons-v2.ttf │ │ ├── dripicons-v2.woff │ │ ├── dropify.eot │ │ ├── dropify.svg │ │ ├── dropify.ttf │ │ ├── dropify.woff │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-solid-900.woff2 │ │ ├── feather.eot │ │ ├── feather.svg │ │ ├── feather.ttf │ │ ├── feather.woff │ │ ├── footable.eot │ │ ├── footable.svg │ │ ├── footable.ttf │ │ ├── footable.woff │ │ ├── materialdesignicons-webfont.eot │ │ ├── materialdesignicons-webfont.svg │ │ ├── materialdesignicons-webfont.ttf │ │ ├── materialdesignicons-webfont.woff │ │ ├── materialdesignicons-webfont.woff2 │ │ ├── summernote.eot │ │ ├── summernote.ttf │ │ ├── summernote.woff │ │ ├── themify.eot │ │ ├── themify.svg │ │ ├── themify.ttf │ │ ├── themify.woff │ │ ├── weathericons-regular-webfont.eot │ │ ├── weathericons-regular-webfont.svg │ │ ├── weathericons-regular-webfont.ttf │ │ ├── weathericons-regular-webfont.woff │ │ └── weathericons-regular-webfont.woff2 │ ├── images │ │ ├── attached-files │ │ │ ├── img-1.jpg │ │ │ ├── img-2.jpg │ │ │ └── img-3.jpg │ │ ├── bg-pattern-2.png │ │ ├── bg-pattern.png │ │ ├── cards │ │ │ ├── amazon.png │ │ │ ├── american-express.png │ │ │ ├── btc.png │ │ │ ├── citi.png │ │ │ ├── discover.png │ │ │ ├── master.png │ │ │ ├── paypal.png │ │ │ ├── stripe.png │ │ │ └── visa.png │ │ ├── clear.png │ │ ├── companies │ │ │ ├── airbnb.png │ │ │ ├── amazon.png │ │ │ ├── apple.png │ │ │ ├── cisco.png │ │ │ ├── facebook.png │ │ │ └── google.png │ │ ├── email │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ ├── favicon.ico │ │ ├── jsgrid.png │ │ ├── loading.gif │ │ ├── logo-dark.png │ │ ├── logo-light.png │ │ ├── logo-sm.png │ │ ├── macbook.png │ │ ├── megamenu-bg.png │ │ ├── multiple-arrow.png │ │ ├── products │ │ │ ├── product-1.jpg │ │ │ ├── product-10.jpg │ │ │ ├── product-11.jpg │ │ │ ├── product-12.jpg │ │ │ ├── product-2.jpg │ │ │ ├── product-3.jpg │ │ │ ├── product-4.jpg │ │ │ ├── product-5.jpg │ │ │ ├── product-6.jpg │ │ │ ├── product-7.jpg │ │ │ ├── product-8.jpg │ │ │ └── product-9.jpg │ │ ├── small │ │ │ ├── img-1.jpg │ │ │ ├── img-2.jpg │ │ │ ├── img-3.jpg │ │ │ ├── img-4.jpg │ │ │ ├── img-5.jpg │ │ │ ├── img-6.jpg │ │ │ └── img-7.jpg │ │ └── users │ │ │ └── avatar.png │ ├── js │ │ ├── app.js │ │ ├── app.min.js │ │ ├── app.min.js.map │ │ ├── pages │ │ │ ├── add-product.init.js │ │ │ ├── animation.init.js │ │ │ ├── bootstrap-tables.init.js │ │ │ ├── c3.init.js │ │ │ ├── calendar.init.js │ │ │ ├── chartist.init.js │ │ │ ├── chartjs.init.js │ │ │ ├── coming-soon.init.js │ │ │ ├── crm-dashboard.init.js │ │ │ ├── crm-leads.init.js │ │ │ ├── crm-opportunities.init.js │ │ │ ├── dashboard-1.init.js │ │ │ ├── dashboard-2.init.js │ │ │ ├── dashboard-3.init.js │ │ │ ├── dashboard-4.init.js │ │ │ ├── datatables.init.js │ │ │ ├── ecommerce-dashboard.init.js │ │ │ ├── flot.init.js │ │ │ ├── foo-tables.init.js │ │ │ ├── form-advanced.init.js │ │ │ ├── form-fileuploads.init.js │ │ │ ├── form-imagecrop.init.js │ │ │ ├── form-masks.init.js │ │ │ ├── form-pickers.init.js │ │ │ ├── form-quilljs.init.js │ │ │ ├── form-summernote.init.js │ │ │ ├── form-validation.init.js │ │ │ ├── form-wizard.init.js │ │ │ ├── form-xeditable.init.js │ │ │ ├── gallery.init.js │ │ │ ├── google-maps.init.js │ │ │ ├── inbox.js │ │ │ ├── jquery.chat.js │ │ │ ├── jquery.todo.js │ │ │ ├── jsgrid.init.js │ │ │ ├── justgage.init.js │ │ │ ├── kanban.init.js │ │ │ ├── loading-btn.init.js │ │ │ ├── mapeal-maps.init.js │ │ │ ├── morris.init.js │ │ │ ├── nestable.init.js │ │ │ ├── peity.init.js │ │ │ ├── range-sliders.init.js │ │ │ ├── responsive-table.init.js │ │ │ ├── ricksaw.init.js │ │ │ ├── sparkline.init.js │ │ │ ├── sweet-alerts.init.js │ │ │ ├── tabledit.init.js │ │ │ ├── tablesaw.init.js │ │ │ ├── tickets.js │ │ │ ├── toastr.init.js │ │ │ ├── tour.init.js │ │ │ ├── treeview.init.js │ │ │ ├── vector-maps.init.js │ │ │ └── widgets.init.js │ │ ├── vendor.js │ │ ├── vendor.min.js │ │ └── vendor.min.js.map │ └── libs │ │ ├── animate │ │ └── animate.min.css │ │ ├── autocomplete │ │ └── jquery.autocomplete.min.js │ │ ├── autonumeric │ │ └── autoNumeric-min.js │ │ ├── bootstrap-colorpicker │ │ ├── bootstrap-colorpicker.min.css │ │ └── bootstrap-colorpicker.min.js │ │ ├── bootstrap-maxlength │ │ └── bootstrap-maxlength.min.js │ │ ├── bootstrap-select │ │ ├── bootstrap-select.min.css │ │ └── bootstrap-select.min.js │ │ ├── bootstrap-table │ │ ├── bootstrap-table.min.css │ │ └── bootstrap-table.min.js │ │ ├── bootstrap-touchspin │ │ ├── jquery.bootstrap-touchspin.css │ │ └── jquery.bootstrap-touchspin.min.js │ │ ├── c3 │ │ ├── c3.min.css │ │ └── c3.min.js │ │ ├── chart-js │ │ └── Chart.bundle.min.js │ │ ├── chartist │ │ ├── chartist-plugin-tooltip.min.js │ │ ├── chartist.min.css │ │ └── chartist.min.js │ │ ├── clockpicker │ │ ├── bootstrap-clockpicker.min.css │ │ └── bootstrap-clockpicker.min.js │ │ ├── cropper │ │ ├── cropper.min.css │ │ └── cropper.min.js │ │ ├── custombox │ │ ├── custombox.min.css │ │ └── custombox.min.js │ │ ├── d3 │ │ └── d3.min.js │ │ ├── datatables │ │ ├── buttons.bootstrap4.css │ │ ├── buttons.bootstrap4.min.js │ │ ├── buttons.flash.min.js │ │ ├── buttons.html5.min.js │ │ ├── buttons.print.min.js │ │ ├── dataTables.bootstrap4.css │ │ ├── dataTables.bootstrap4.js │ │ ├── dataTables.buttons.min.js │ │ ├── dataTables.keyTable.min.js │ │ ├── dataTables.responsive.min.js │ │ ├── dataTables.select.min.js │ │ ├── jquery.dataTables.js │ │ ├── responsive.bootstrap4.css │ │ ├── responsive.bootstrap4.min.js │ │ └── select.bootstrap4.css │ │ ├── dropify │ │ ├── dropify.min.css │ │ └── dropify.min.js │ │ ├── dropzone │ │ ├── dropzone.min.css │ │ └── dropzone.min.js │ │ ├── flatpickr │ │ ├── flatpickr.min.css │ │ └── flatpickr.min.js │ │ ├── flot-charts │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.orderBars.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.time.js │ │ └── jquery.flot.tooltip.min.js │ │ ├── footable │ │ ├── footable.all.min.js │ │ └── footable.core.min.css │ │ ├── fullcalendar │ │ ├── fullcalendar.min.css │ │ └── fullcalendar.min.js │ │ ├── gmaps │ │ └── gmaps.min.js │ │ ├── hopscotch │ │ ├── hopscotch.min.css │ │ └── hopscotch.min.js │ │ ├── ion-rangeslider │ │ ├── ion.rangeSlider.css │ │ ├── ion.rangeSlider.min.js │ │ └── ion.rangeSlider.skinModern.css │ │ ├── jquery-countdown │ │ └── jquery.countdown.min.js │ │ ├── jquery-knob │ │ └── jquery.knob.min.js │ │ ├── jquery-mapael │ │ ├── jquery.mapael.min.js │ │ ├── usa_states.min.js │ │ └── world_countries.min.js │ │ ├── jquery-mask-plugin │ │ └── jquery.mask.min.js │ │ ├── jquery-mockjax │ │ └── jquery.mockjax.min.js │ │ ├── jquery-nice-select │ │ ├── jquery.nice-select.min.js │ │ └── nice-select.css │ │ ├── jquery-scrollto │ │ └── jquery.scrollTo.min.js │ │ ├── jquery-sparkline │ │ └── jquery.sparkline.min.js │ │ ├── jquery-tabledit │ │ └── jquery.tabledit.min.js │ │ ├── jquery-toast │ │ ├── jquery.toast.min.css │ │ └── jquery.toast.min.js │ │ ├── jquery-ui │ │ └── jquery-ui.min.js │ │ ├── jquery-vectormap │ │ ├── jquery-jvectormap-1.2.2.css │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ ├── jquery-jvectormap-au-mill-en.js │ │ ├── jquery-jvectormap-ca-lcc-en.js │ │ ├── jquery-jvectormap-in-mill-en.js │ │ ├── jquery-jvectormap-uk-mill-en.js │ │ ├── jquery-jvectormap-us-il-chicago-mill-en.js │ │ ├── jquery-jvectormap-us-merc-en.js │ │ └── jquery-jvectormap-world-mill-en.js │ │ ├── jsgrid │ │ ├── jsgrid-theme.css │ │ ├── jsgrid.min.css │ │ └── jsgrid.min.js │ │ ├── justgage │ │ └── justgage.js │ │ ├── katex │ │ └── katex.min.js │ │ ├── ladda │ │ ├── ladda-themeless.min.css │ │ ├── ladda.js │ │ └── spin.js │ │ ├── magnific-popup │ │ ├── jquery.magnific-popup.min.js │ │ └── magnific-popup.css │ │ ├── moment │ │ └── moment.min.js │ │ ├── morris-js │ │ └── morris.min.js │ │ ├── multiselect │ │ ├── jquery.multi-select.js │ │ └── multi-select.css │ │ ├── nestable2 │ │ ├── jquery.nestable.min.css │ │ └── jquery.nestable.min.js │ │ ├── parsleyjs │ │ └── parsley.min.js │ │ ├── pdfmake │ │ ├── pdfmake.min.js │ │ └── vfs_fonts.js │ │ ├── peity │ │ └── jquery.peity.min.js │ │ ├── quill │ │ ├── quill.bubble.css │ │ ├── quill.core.css │ │ ├── quill.min.js │ │ └── quill.snow.css │ │ ├── raphael │ │ └── raphael.min.js │ │ ├── rickshaw │ │ ├── rickshaw.min.css │ │ └── rickshaw.min.js │ │ ├── rwd-table │ │ ├── rwd-table.min.css │ │ └── rwd-table.min.js │ │ ├── select2 │ │ ├── select2.min.css │ │ └── select2.min.js │ │ ├── summernote │ │ ├── summernote-bs4.css │ │ └── summernote-bs4.min.js │ │ ├── sweetalert2 │ │ ├── sweetalert2.min.css │ │ └── sweetalert2.min.js │ │ ├── switchery │ │ ├── switchery.min.css │ │ └── switchery.min.js │ │ ├── tablesaw │ │ ├── tablesaw.css │ │ └── tablesaw.js │ │ ├── tippy-js │ │ └── tippy.all.min.js │ │ ├── toastr │ │ ├── toastr.min.css │ │ └── toastr.min.js │ │ ├── twitter-bootstrap-wizard │ │ └── jquery.bootstrap.wizard.min.js │ │ └── x-editable │ │ ├── bootstrap-editable.css │ │ └── bootstrap-editable.min.js └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── themes ├── cleanex │ ├── assets │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ ├── bg.png │ │ │ ├── help.png │ │ │ ├── index.php │ │ │ ├── landing.png │ │ │ └── wave.png │ │ ├── index.php │ │ └── js │ │ │ ├── index.php │ │ │ └── main.js │ ├── blog.php │ ├── blog.single.php │ ├── bundles.php │ ├── checkout.php │ ├── contact.php │ ├── custom.splash.php │ ├── domain.php │ ├── email.php │ ├── footer.php │ ├── forgot.php │ ├── frame.php │ ├── functions.php │ ├── header.php │ ├── index.php │ ├── invite.php │ ├── login.php │ ├── media.php │ ├── membership.php │ ├── overlay.php │ ├── page.php │ ├── pixels.php │ ├── profile.php │ ├── register.php │ ├── screenshot.png │ ├── settings.php │ ├── shared │ │ ├── index.php │ │ ├── public_url_loop.php │ │ ├── shortener.php │ │ ├── template.php │ │ ├── url_loop.php │ │ └── user_template.php │ ├── splash.php │ ├── stats.php │ ├── style.css │ ├── style.less │ ├── teams.php │ ├── tmail_compose.php │ ├── tmail_draft.php │ ├── tmail_inbox.php │ ├── tmail_sentmail.php │ ├── tmail_trash.php │ ├── tmails.php │ ├── tools.php │ ├── upgrade.php │ └── user.php └── index.php └── vendor ├── autoload.php └── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json /.htaccess: -------------------------------------------------------------------------------- 1 | ## Uncomment (remove # ONLY NOT ##) line below if installed in folder and add folder name after / 2 | ## Example: Script is installed in /public_html/short/ then it should be: Rewritebase /short 3 | ## Then the files below should be (add slash to all): /index.php?a=$1 4 | 5 | #Options -MultiViews 6 | 7 | RewriteEngine On 8 | 9 | ## Uncomment the following line to use the multi-domain feature 10 | # RewriteCond %{HTTP_HOST} ^yourseconddomain\.com$ [NC] 11 | # RewriteRule ^(.*)$ http://yourfirstdomain.com/$1 [R=301,L] 12 | 13 | #Rewritebase / 14 | ## Admin Panel 15 | RewriteCond %{REQUEST_FILENAME} !-d 16 | RewriteCond %{REQUEST_FILENAME} !-f 17 | RewriteRule ^admin/(.*)?$ admin/index.php?a=$1 [QSA,NC,L] 18 | 19 | ## Sitemap ### 20 | RewriteRule ^sitemap.xml$ sitemap.php 21 | 22 | ## Application Handler 23 | RewriteCond %{REQUEST_FILENAME} !-d 24 | RewriteCond %{REQUEST_FILENAME} !-f 25 | RewriteRule ^(.*)?$ index.php?a=$1 [QSA,NC,L] 26 | 27 | ## Error 404 ## 28 | ErrorDocument 404 /index.php?a=404 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CorePHP-Tmail-Service 2 | -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- 1 | run(); 28 | 29 | ?> -------------------------------------------------------------------------------- /admin/static/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/system/edit.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |