├── .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 |
4 |
5 | 6 |
7 |
8 | 9 |
10 |
-------------------------------------------------------------------------------- /admin/system/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /admin/system/subscription.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
Subscription
4 |
5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
IDTransaction IDUser IDStatusAmountDateExpiration
id ?>tid ?>userid}")?>" class="btn btn-success btn-xs">userid ?>status ?>amount ?>date ?>expiry ?>
32 |
33 | 34 |
35 |
-------------------------------------------------------------------------------- /admin/system/themes.php: -------------------------------------------------------------------------------- 1 | 2 |

3 | All themes are located in the "themes" folder. All you have to do is to upload your theme in that folder then come here to activate it. Make sure to name your main stylesheet style.css otherwise the theme will not show up! 4 |

5 |
6 | 7 |
-------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "php-imap/php-imap": "dev-develop" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /content/10_5614ccf87278dffdcbe10337bd4574a9b55f4d88_mycv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/10_5614ccf87278dffdcbe10337bd4574a9b55f4d88_mycv.pdf -------------------------------------------------------------------------------- /content/10_903eb46e0287e7b91e92981199c634daeb223fe3_my_cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/10_903eb46e0287e7b91e92981199c634daeb223fe3_my_cv.pdf -------------------------------------------------------------------------------- /content/12_0dd85c5ed563d3b11bfa5fef32ec7ab3b7b24b8a_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/12_0dd85c5ed563d3b11bfa5fef32ec7ab3b7b24b8a_1.png -------------------------------------------------------------------------------- /content/12_38e6804de0f7832b768126a2fdca325cc4a13bc3_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/12_38e6804de0f7832b768126a2fdca325cc4a13bc3_3.jpeg -------------------------------------------------------------------------------- /content/12_6eaad880cf7f5b19dff366816d0d549e6d009db4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/12_6eaad880cf7f5b19dff366816d0d549e6d009db4_2.png -------------------------------------------------------------------------------- /content/1_a060a4f58b6c6b27ef9f38965efaf540bb303c32_carddavtestmoodofthemoon.com.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/1_a060a4f58b6c6b27ef9f38965efaf540bb303c32_carddavtestmoodofthemoon.com.mobileconfig -------------------------------------------------------------------------------- /content/1_abb156cc3e425e96be0a51171469297bdde26c8a_cpanellogotiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/1_abb156cc3e425e96be0a51171469297bdde26c8a_cpanellogotiny.png -------------------------------------------------------------------------------- /content/1_add57a257eb5af7c802963d259cb01bf8e9f0fed_caldavtestmoodofthemoon.com.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/1_add57a257eb5af7c802963d259cb01bf8e9f0fed_caldavtestmoodofthemoon.com.mobileconfig -------------------------------------------------------------------------------- /content/1_d4e143ea548bd625237cb3a3d0bb52dbacadbe64_emailtestmoodofthemoon.com.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/1_d4e143ea548bd625237cb3a3d0bb52dbacadbe64_emailtestmoodofthemoon.com.mobileconfig -------------------------------------------------------------------------------- /content/3_a060a4f58b6c6b27ef9f38965efaf540bb303c32_carddavtestmoodofthemoon.com.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/3_a060a4f58b6c6b27ef9f38965efaf540bb303c32_carddavtestmoodofthemoon.com.mobileconfig -------------------------------------------------------------------------------- /content/3_abb156cc3e425e96be0a51171469297bdde26c8a_cpanellogotiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/3_abb156cc3e425e96be0a51171469297bdde26c8a_cpanellogotiny.png -------------------------------------------------------------------------------- /content/3_add57a257eb5af7c802963d259cb01bf8e9f0fed_caldavtestmoodofthemoon.com.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/3_add57a257eb5af7c802963d259cb01bf8e9f0fed_caldavtestmoodofthemoon.com.mobileconfig -------------------------------------------------------------------------------- /content/3_d4e143ea548bd625237cb3a3d0bb52dbacadbe64_emailtestmoodofthemoon.com.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/content/3_d4e143ea548bd625237cb3a3d0bb52dbacadbe64_emailtestmoodofthemoon.com.mobileconfig -------------------------------------------------------------------------------- /content/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/languages/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/library/2FA.load.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view the LICENSE 11 | * file that was distributed with this source code. 12 | */ 13 | 14 | namespace Sonata\GoogleAuthenticator; 15 | 16 | interface GoogleAuthenticatorInterface 17 | { 18 | /** 19 | * @param string $secret 20 | * @param string $code 21 | */ 22 | public function checkCode($secret, $code, $discrepancy = 1): bool; 23 | 24 | /** 25 | * NEXT_MAJOR: add the interface typehint to $time and remove deprecation. 26 | * 27 | * @param string $secret 28 | * @param float|string|int|\DateTimeInterface|null $time 29 | */ 30 | public function getCode($secret, /* \DateTimeInterface */$time = null): string; 31 | 32 | /** 33 | * NEXT_MAJOR: Remove this method. 34 | * 35 | * @param string $user 36 | * @param string $hostname 37 | * @param string $secret 38 | * 39 | * @deprecated deprecated as of 2.1 and will be removed in 3.0. Use Sonata\GoogleAuthenticator\GoogleQrUrl::generate() instead. 40 | */ 41 | public function getUrl($user, $hostname, $secret): string; 42 | 43 | public function generateSecret(): string; 44 | } 45 | -------------------------------------------------------------------------------- /includes/library/Sonata/GoogleAuthenticator/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view the LICENSE 11 | * file that was distributed with this source code. 12 | */ 13 | 14 | namespace Sonata\GoogleAuthenticator; 15 | 16 | /** 17 | * Contains runtime exception templates. 18 | * 19 | * @author Iltar van der Berg 20 | */ 21 | final class RuntimeException extends \RuntimeException 22 | { 23 | public static function InvalidAccountName(string $accountName): self 24 | { 25 | return new self(sprintf( 26 | 'The account name may not contain a double colon (:) and may not be an empty string. Given "%s".', 27 | $accountName 28 | )); 29 | } 30 | 31 | public static function InvalidIssuer(string $issuer): self 32 | { 33 | return new self(sprintf( 34 | 'The issuer name may not contain a double colon (:) and may not be an empty string. Given "%s".', 35 | $issuer 36 | )); 37 | } 38 | 39 | public static function InvalidSecret(): self 40 | { 41 | return new self('The secret name may not be an empty string.'); 42 | } 43 | } 44 | 45 | // NEXT_MAJOR: Remove class alias 46 | class_alias('Sonata\GoogleAuthenticator\RuntimeException', 'Google\Authenticator\RuntimeException', false); 47 | -------------------------------------------------------------------------------- /includes/library/Sonata/GoogleAuthenticator/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/library/Sonata/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/library/Stripe.load.php: -------------------------------------------------------------------------------- 1 | json, $opts); 25 | if (!is_a($obj, 'Stripe\\Collection')) { 26 | $class = get_class($obj); 27 | $message = "Expected type \"Stripe\\Collection\", got \"$class\" instead"; 28 | throw new Error\Api($message); 29 | } 30 | $obj->setLastResponse($response); 31 | $obj->setRequestParams($params); 32 | return $obj; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /includes/library/Stripe/ApiOperations/Create.php: -------------------------------------------------------------------------------- 1 | json, $opts); 25 | $obj->setLastResponse($response); 26 | return $obj; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /includes/library/Stripe/ApiOperations/Delete.php: -------------------------------------------------------------------------------- 1 | instanceUrl(); 23 | list($response, $opts) = $this->_request('delete', $url, $params, $opts); 24 | $this->refreshFrom($response, $opts); 25 | return $this; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /includes/library/Stripe/ApiOperations/Retrieve.php: -------------------------------------------------------------------------------- 1 | refresh(); 25 | return $instance; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /includes/library/Stripe/ApiOperations/Update.php: -------------------------------------------------------------------------------- 1 | json, $opts); 27 | $obj->setLastResponse($response); 28 | return $obj; 29 | } 30 | 31 | /** 32 | * @param array|string|null $opts 33 | * 34 | * @return ApiResource The saved resource. 35 | */ 36 | public function save($opts = null) 37 | { 38 | $params = $this->serializeParameters(); 39 | if (count($params) > 0) { 40 | $url = $this->instanceUrl(); 41 | list($response, $opts) = $this->_request('post', $url, $params, $opts); 42 | $this->refreshFrom($response, $opts); 43 | } 44 | return $this; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /includes/library/Stripe/ApiResponse.php: -------------------------------------------------------------------------------- 1 | body = $body; 28 | $this->code = $code; 29 | $this->headers = $headers; 30 | $this->json = $json; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /includes/library/Stripe/ApplePayDomain.php: -------------------------------------------------------------------------------- 1 | _save($opts); 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /includes/library/Stripe/Balance.php: -------------------------------------------------------------------------------- 1 | instanceUrl() . '/close'; 39 | list($response, $opts) = $this->_request('post', $url, null, $options); 40 | $this->refreshFrom($response, $opts); 41 | return $this; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /includes/library/Stripe/EphemeralKey.php: -------------------------------------------------------------------------------- 1 | httpStatus = $httpStatus; 18 | $this->httpBody = $httpBody; 19 | $this->jsonBody = $jsonBody; 20 | $this->httpHeaders = $httpHeaders; 21 | $this->requestId = null; 22 | 23 | if ($httpHeaders && isset($httpHeaders['Request-Id'])) { 24 | $this->requestId = $httpHeaders['Request-Id']; 25 | } 26 | } 27 | 28 | public function getHttpStatus() 29 | { 30 | return $this->httpStatus; 31 | } 32 | 33 | public function getHttpBody() 34 | { 35 | return $this->httpBody; 36 | } 37 | 38 | public function getJsonBody() 39 | { 40 | return $this->jsonBody; 41 | } 42 | 43 | public function getHttpHeaders() 44 | { 45 | return $this->httpHeaders; 46 | } 47 | 48 | public function getRequestId() 49 | { 50 | return $this->requestId; 51 | } 52 | 53 | public function __toString() 54 | { 55 | $id = $this->requestId ? " from API request '{$this->requestId}'": ""; 56 | $message = explode("\n", parent::__toString()); 57 | $message[0] .= $id; 58 | return implode("\n", $message); 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /includes/library/Stripe/Error/Card.php: -------------------------------------------------------------------------------- 1 | stripeParam = $stripeParam; 18 | $this->stripeCode = $stripeCode; 19 | 20 | // This one is not like the others because it was added later and we're 21 | // trying to do our best not to change the public interface of this class' 22 | // constructor. We should consider changing its implementation on the 23 | // next major version bump of this library. 24 | $this->declineCode = isset($jsonBody["error"]["decline_code"]) ? $jsonBody["error"]["decline_code"] : null; 25 | } 26 | 27 | public function getDeclineCode() 28 | { 29 | return $this->declineCode; 30 | } 31 | 32 | public function getStripeCode() 33 | { 34 | return $this->stripeCode; 35 | } 36 | 37 | public function getStripeParam() 38 | { 39 | return $this->stripeParam; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /includes/library/Stripe/Error/Idempotency.php: -------------------------------------------------------------------------------- 1 | stripeParam = $stripeParam; 17 | } 18 | 19 | public function getStripeParam() 20 | { 21 | return $this->stripeParam; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /includes/library/Stripe/Error/OAuth/InvalidClient.php: -------------------------------------------------------------------------------- 1 | code = $code; 17 | } 18 | 19 | public function getErrorCode() 20 | { 21 | return $this->code; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /includes/library/Stripe/Error/OAuth/UnsupportedGrantType.php: -------------------------------------------------------------------------------- 1 | sigHeader = $sigHeader; 14 | } 15 | 16 | public function getSigHeader() 17 | { 18 | return $this->sigHeader; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /includes/library/Stripe/Event.php: -------------------------------------------------------------------------------- 1 | instanceUrl() . '/cancel'; 43 | list($response, $opts) = $this->_request('post', $url); 44 | $this->refreshFrom($response, $opts); 45 | return $this; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /includes/library/Stripe/Plan.php: -------------------------------------------------------------------------------- 1 | id; 27 | $transfers = Transfer::all($params, $this->_opts); 28 | return $transfers; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /includes/library/Stripe/RecipientTransfer.php: -------------------------------------------------------------------------------- 1 | refresh(); 17 | return $instance; 18 | } 19 | 20 | /** 21 | * @return string The endpoint associated with this singleton class. 22 | */ 23 | public static function classUrl() 24 | { 25 | $base = static::className(); 26 | return "/v1/${base}"; 27 | } 28 | 29 | /** 30 | * @return string The endpoint associated with this singleton API resource. 31 | */ 32 | public function instanceUrl() 33 | { 34 | return static::classUrl(); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /includes/library/Stripe/SourceTransaction.php: -------------------------------------------------------------------------------- 1 | 0) { 14 | throw new Exception('DefaultLogger does not currently implement context. Please implement if you need it.'); 15 | } 16 | error_log($message); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /includes/library/Stripe/Util/LoggerInterface.php: -------------------------------------------------------------------------------- 1 | _elts = []; 15 | foreach ($members as $item) { 16 | $this->_elts[$item] = true; 17 | } 18 | } 19 | 20 | public function includes($elt) 21 | { 22 | return isset($this->_elts[$elt]); 23 | } 24 | 25 | public function add($elt) 26 | { 27 | $this->_elts[$elt] = true; 28 | } 29 | 30 | public function discard($elt) 31 | { 32 | unset($this->_elts[$elt]); 33 | } 34 | 35 | public function toArray() 36 | { 37 | return array_keys($this->_elts); 38 | } 39 | 40 | public function getIterator() 41 | { 42 | return new ArrayIterator($this->toArray()); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /includes/library/auth/Facebook/Exceptions/FacebookAuthenticationException.php: -------------------------------------------------------------------------------- 1 | key = $key; 25 | $this->secret = $secret; 26 | $this->callbackUrl = $callbackUrl; 27 | } 28 | 29 | /** 30 | * @return string 31 | */ 32 | public function __toString() 33 | { 34 | return "Consumer[key=$this->key,secret=$this->secret]"; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /includes/library/auth/Twitter/HmacSha1.php: -------------------------------------------------------------------------------- 1 | getSignatureBaseString(); 31 | 32 | $parts = [$consumer->secret, null !== $token ? $token->secret : ""]; 33 | 34 | $parts = Util::urlencodeRfc3986($parts); 35 | $key = implode('&', $parts); 36 | 37 | return base64_encode(hash_hmac('sha1', $signatureBase, $key, true)); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /includes/library/auth/Twitter/Token.php: -------------------------------------------------------------------------------- 1 | key = $key; 22 | $this->secret = $secret; 23 | } 24 | 25 | /** 26 | * Generates the basic string serialization of a token that a server 27 | * would respond to request_token and access_token calls with 28 | * 29 | * @return string 30 | */ 31 | public function __toString() 32 | { 33 | return sprintf( 34 | "oauth_token=%s&oauth_token_secret=%s", 35 | Util::urlencodeRfc3986($this->key), 36 | Util::urlencodeRfc3986($this->secret) 37 | ); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /includes/library/auth/Twitter/TwitterOAuthException.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | class TwitterOAuthException extends \Exception 9 | { 10 | } 11 | -------------------------------------------------------------------------------- /includes/library/auth/Twitter/Util/JsonDecoder.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | class JsonDecoder 9 | { 10 | /** 11 | * Decodes a JSON string to stdObject or associative array 12 | * 13 | * @param string $string 14 | * @param bool $asArray 15 | * 16 | * @return array|object 17 | */ 18 | public static function decode($string, $asArray) 19 | { 20 | if (version_compare(PHP_VERSION, '5.4.0', '>=') && !(defined('JSON_C_VERSION') && PHP_INT_SIZE > 4)) { 21 | return json_decode($string, $asArray, 512, JSON_BIGINT_AS_STRING); 22 | } 23 | 24 | return json_decode($string, $asArray); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /includes/library/auth/Twitter/autoload.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/library/cert/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/library/geoip/GeoIP.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/includes/library/geoip/GeoIP.mmdb -------------------------------------------------------------------------------- /includes/library/geoip/MaxMind/Db/Reader/InvalidDatabaseException.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/library/phpmailer/PHPMailerAutoload.php: -------------------------------------------------------------------------------- 1 | 8 | * @author Jim Jagielski (jimjag) 9 | * @author Andy Prevost (codeworxtech) 10 | * @author Brent R. Matzelle (original founder) 11 | * @copyright 2012 - 2014 Marcus Bointon 12 | * @copyright 2010 - 2012 Jim Jagielski 13 | * @copyright 2004 - 2009 Andy Prevost 14 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 15 | * @note This program is distributed in the hope that it will be useful - WITHOUT 16 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 17 | * FITNESS FOR A PARTICULAR PURPOSE. 18 | */ 19 | 20 | /** 21 | * PHPMailer SPL autoloader. 22 | * @param string $classname The name of the class to load 23 | */ 24 | function PHPMailerAutoload($classname) 25 | { 26 | //Can't use __DIR__ as it's only in PHP 5.3+ 27 | $filename = dirname(__FILE__).DIRECTORY_SEPARATOR.'class.'.strtolower($classname).'.php'; 28 | if (is_readable($filename)) { 29 | require $filename; 30 | } 31 | } 32 | 33 | if (version_compare(PHP_VERSION, '5.3.0', '>=')) { 34 | spl_autoload_register('PHPMailerAutoload', true, true); 35 | } else { 36 | spl_autoload_register('PHPMailerAutoload'); 37 | } 38 | -------------------------------------------------------------------------------- /includes/library/phpmailer/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/library/phpmailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:身份验证失败。'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP 错误: 不能连接SMTP主机。'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误: 数据不可接受。'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = '未知编码:'; 13 | $PHPMAILER_LANG['execute'] = '不能执行: '; 14 | $PHPMAILER_LANG['file_access'] = '不能访问文件:'; 15 | $PHPMAILER_LANG['file_open'] = '文件错误:不能打开文件:'; 16 | $PHPMAILER_LANG['from_failed'] = '下面的发送地址邮件发送失败了: '; 17 | $PHPMAILER_LANG['instantiate'] = '不能实现mail方法。'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' 您所选择的发送邮件的方法并不支持。'; 20 | $PHPMAILER_LANG['provide_address'] = '您必须提供至少一个 收信人的email地址。'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误: 下面的 收件人失败了: '; 22 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 23 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 25 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /includes/library/phpmailer/language/phpmailer.lang-ko.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP 오류: 인증할 수 없습니다.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP 오류: SMTP 호스트에 접속할 수 없습니다.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 오류: 데이터가 받아들여지지 않았습니다.'; 11 | $PHPMAILER_LANG['empty_message'] = '메세지 내용이 없습니다'; 12 | $PHPMAILER_LANG['encoding'] = '알 수 없는 인코딩: '; 13 | $PHPMAILER_LANG['execute'] = '실행 불가: '; 14 | $PHPMAILER_LANG['file_access'] = '파일 접근 불가: '; 15 | $PHPMAILER_LANG['file_open'] = '파일 오류: 파일을 열 수 없습니다: '; 16 | $PHPMAILER_LANG['from_failed'] = '다음 From 주소에서 오류가 발생했습니다: '; 17 | $PHPMAILER_LANG['instantiate'] = 'mail 함수를 인스턴스화할 수 없습니다'; 18 | $PHPMAILER_LANG['invalid_address'] = '잘못된 주소: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' 메일러는 지원되지 않습니다.'; 20 | $PHPMAILER_LANG['provide_address'] = '적어도 한 개 이상의 수신자 메일 주소를 제공해야 합니다.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 오류: 다음 수신자에서 오류가 발생했습니다: '; 22 | $PHPMAILER_LANG['signing'] = '서명 오류: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 연결을 실패하였습니다.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 서버 오류: '; 25 | $PHPMAILER_LANG['variable_set'] = '변수 설정 및 초기화 불가: '; 26 | $PHPMAILER_LANG['extension_missing'] = '확장자 없음: '; 27 | -------------------------------------------------------------------------------- /includes/library/phpmailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Peter Dave Hello <@PeterDaveHello/> 7 | * @author Jason Chiang 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP 錯誤:登入失敗。'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP 錯誤:無法連線到 SMTP 主機。'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 錯誤:無法接受的資料。'; 13 | $PHPMAILER_LANG['empty_message'] = '郵件內容為空'; 14 | $PHPMAILER_LANG['encoding'] = '未知編碼: '; 15 | $PHPMAILER_LANG['execute'] = '無法執行:'; 16 | $PHPMAILER_LANG['file_access'] = '無法存取檔案:'; 17 | $PHPMAILER_LANG['file_open'] = '檔案錯誤:無法開啟檔案:'; 18 | $PHPMAILER_LANG['from_failed'] = '發送地址錯誤:'; 19 | $PHPMAILER_LANG['instantiate'] = '未知函數呼叫。'; 20 | $PHPMAILER_LANG['invalid_address'] = '因為電子郵件地址無效,無法傳送: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = '不支援的發信客戶端。'; 22 | $PHPMAILER_LANG['provide_address'] = '必須提供至少一個收件人地址。'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 錯誤:以下收件人地址錯誤:'; 24 | $PHPMAILER_LANG['signing'] = '電子簽章錯誤: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 連線失敗'; 26 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 伺服器錯誤: '; 27 | $PHPMAILER_LANG['variable_set'] = '無法設定或重設變數: '; 28 | $PHPMAILER_LANG['extension_missing'] = '遺失模組 Extension: '; 29 | -------------------------------------------------------------------------------- /includes/library/phpmailer/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- 1 | 6 | * @author young 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:登录失败。'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP 错误:无法连接到 SMTP 主机。'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误:数据不被接受。'; 12 | $PHPMAILER_LANG['empty_message'] = '邮件正文为空。'; 13 | $PHPMAILER_LANG['encoding'] = '未知编码: '; 14 | $PHPMAILER_LANG['execute'] = '无法执行:'; 15 | $PHPMAILER_LANG['file_access'] = '无法访问文件:'; 16 | $PHPMAILER_LANG['file_open'] = '文件错误:无法打开文件:'; 17 | $PHPMAILER_LANG['from_failed'] = '发送地址错误:'; 18 | $PHPMAILER_LANG['instantiate'] = '未知函数调用。'; 19 | $PHPMAILER_LANG['invalid_address'] = '发送失败,电子邮箱地址是无效的:'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = '发信客户端不被支持。'; 21 | $PHPMAILER_LANG['provide_address'] = '必须提供至少一个收件人地址。'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误:收件人地址错误:'; 23 | $PHPMAILER_LANG['signing'] = '登录失败:'; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP服务器连接失败。'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP服务器出错: '; 26 | $PHPMAILER_LANG['variable_set'] = '无法设置或重置变量:'; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | run(); -------------------------------------------------------------------------------- /static/css/img/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/aero.png -------------------------------------------------------------------------------- /static/css/img/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/aero@2x.png -------------------------------------------------------------------------------- /static/css/img/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/blue.png -------------------------------------------------------------------------------- /static/css/img/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/blue@2x.png -------------------------------------------------------------------------------- /static/css/img/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/chosen-sprite.png -------------------------------------------------------------------------------- /static/css/img/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/chosen-sprite@2x.png -------------------------------------------------------------------------------- /static/css/img/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/flat.png -------------------------------------------------------------------------------- /static/css/img/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/flat@2x.png -------------------------------------------------------------------------------- /static/css/img/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/green.png -------------------------------------------------------------------------------- /static/css/img/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/green@2x.png -------------------------------------------------------------------------------- /static/css/img/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/grey.png -------------------------------------------------------------------------------- /static/css/img/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/grey@2x.png -------------------------------------------------------------------------------- /static/css/img/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/css/img/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/orange.png -------------------------------------------------------------------------------- /static/css/img/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/orange@2x.png -------------------------------------------------------------------------------- /static/css/img/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/pink.png -------------------------------------------------------------------------------- /static/css/img/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/pink@2x.png -------------------------------------------------------------------------------- /static/css/img/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/purple.png -------------------------------------------------------------------------------- /static/css/img/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/purple@2x.png -------------------------------------------------------------------------------- /static/css/img/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/red.png -------------------------------------------------------------------------------- /static/css/img/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/red@2x.png -------------------------------------------------------------------------------- /static/css/img/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/yellow.png -------------------------------------------------------------------------------- /static/css/img/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/css/img/yellow@2x.png -------------------------------------------------------------------------------- /static/css/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/detect.app.js: -------------------------------------------------------------------------------- 1 | 2 | if(typeof blockAdBlock === 'undefined') { 3 | engageBlock(); 4 | } else { 5 | blockAdBlock.onDetected(engageBlock); 6 | } 7 | 8 | blockAdBlock.setOption({ 9 | checkOnLoad: true, 10 | resetOnEnd: false 11 | }); 12 | 13 | function engageBlock() { 14 | $("body").html(''); 15 | $("body").prepend('

'+detect.on+''+detect.detail+'

'); 16 | $("#detect-app").css("height", $(document).height()).hide(); 17 | $("#detect-app").fadeIn(); 18 | } -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/globe.png -------------------------------------------------------------------------------- /static/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/img/Thumbs.db -------------------------------------------------------------------------------- /static/img/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/img/download.png -------------------------------------------------------------------------------- /static/img/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/powered_by_stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/img/powered_by_stripe.png -------------------------------------------------------------------------------- /static/img/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/img/upload.png -------------------------------------------------------------------------------- /static/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/loader.gif -------------------------------------------------------------------------------- /static/noscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/noscreen.png -------------------------------------------------------------------------------- /static/ubold/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /static/ubold/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /static/ubold/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-bold.eot -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-bold.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-bold.woff -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-bold.woff2 -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-light.eot -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-light.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-light.woff -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-light.woff2 -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-medium.eot -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-medium.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-medium.woff -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-medium.woff2 -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-regular.eot -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-regular.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-regular.woff -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-regular.woff2 -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-semibold.eot -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-semibold.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-semibold.woff -------------------------------------------------------------------------------- /static/ubold/fonts/cerebrisans-semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/cerebrisans-semibold.woff2 -------------------------------------------------------------------------------- /static/ubold/fonts/dripicons-v2.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/dripicons-v2.eot -------------------------------------------------------------------------------- /static/ubold/fonts/dripicons-v2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/dripicons-v2.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/dripicons-v2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/dripicons-v2.woff -------------------------------------------------------------------------------- /static/ubold/fonts/dropify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/dropify.eot -------------------------------------------------------------------------------- /static/ubold/fonts/dropify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/dropify.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/dropify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/dropify.woff -------------------------------------------------------------------------------- /static/ubold/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/ubold/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/ubold/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/ubold/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/ubold/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/ubold/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/ubold/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/ubold/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/ubold/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/ubold/fonts/feather.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/feather.eot -------------------------------------------------------------------------------- /static/ubold/fonts/feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/feather.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/feather.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/feather.woff -------------------------------------------------------------------------------- /static/ubold/fonts/footable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/footable.eot -------------------------------------------------------------------------------- /static/ubold/fonts/footable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/footable.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/footable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/footable.woff -------------------------------------------------------------------------------- /static/ubold/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /static/ubold/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /static/ubold/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /static/ubold/fonts/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/summernote.eot -------------------------------------------------------------------------------- /static/ubold/fonts/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/summernote.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/summernote.woff -------------------------------------------------------------------------------- /static/ubold/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/themify.eot -------------------------------------------------------------------------------- /static/ubold/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/themify.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/themify.woff -------------------------------------------------------------------------------- /static/ubold/fonts/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /static/ubold/fonts/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /static/ubold/fonts/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /static/ubold/fonts/weathericons-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/fonts/weathericons-regular-webfont.woff2 -------------------------------------------------------------------------------- /static/ubold/images/attached-files/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/attached-files/img-1.jpg -------------------------------------------------------------------------------- /static/ubold/images/attached-files/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/attached-files/img-2.jpg -------------------------------------------------------------------------------- /static/ubold/images/attached-files/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/attached-files/img-3.jpg -------------------------------------------------------------------------------- /static/ubold/images/bg-pattern-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/bg-pattern-2.png -------------------------------------------------------------------------------- /static/ubold/images/bg-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/bg-pattern.png -------------------------------------------------------------------------------- /static/ubold/images/cards/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/cards/amazon.png -------------------------------------------------------------------------------- /static/ubold/images/cards/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/cards/american-express.png -------------------------------------------------------------------------------- /static/ubold/images/cards/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/cards/btc.png -------------------------------------------------------------------------------- /static/ubold/images/cards/citi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/cards/citi.png -------------------------------------------------------------------------------- /static/ubold/images/cards/discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/cards/discover.png -------------------------------------------------------------------------------- /static/ubold/images/cards/master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/cards/master.png -------------------------------------------------------------------------------- /static/ubold/images/cards/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/cards/paypal.png -------------------------------------------------------------------------------- /static/ubold/images/cards/stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/cards/stripe.png -------------------------------------------------------------------------------- /static/ubold/images/cards/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/cards/visa.png -------------------------------------------------------------------------------- /static/ubold/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/clear.png -------------------------------------------------------------------------------- /static/ubold/images/companies/airbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/companies/airbnb.png -------------------------------------------------------------------------------- /static/ubold/images/companies/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/companies/amazon.png -------------------------------------------------------------------------------- /static/ubold/images/companies/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/companies/apple.png -------------------------------------------------------------------------------- /static/ubold/images/companies/cisco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/companies/cisco.png -------------------------------------------------------------------------------- /static/ubold/images/companies/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/companies/facebook.png -------------------------------------------------------------------------------- /static/ubold/images/companies/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/companies/google.png -------------------------------------------------------------------------------- /static/ubold/images/email/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/email/1.png -------------------------------------------------------------------------------- /static/ubold/images/email/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/email/2.png -------------------------------------------------------------------------------- /static/ubold/images/email/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/email/3.png -------------------------------------------------------------------------------- /static/ubold/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/favicon.ico -------------------------------------------------------------------------------- /static/ubold/images/jsgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/jsgrid.png -------------------------------------------------------------------------------- /static/ubold/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/loading.gif -------------------------------------------------------------------------------- /static/ubold/images/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/logo-dark.png -------------------------------------------------------------------------------- /static/ubold/images/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/logo-light.png -------------------------------------------------------------------------------- /static/ubold/images/logo-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/logo-sm.png -------------------------------------------------------------------------------- /static/ubold/images/macbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/macbook.png -------------------------------------------------------------------------------- /static/ubold/images/megamenu-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/megamenu-bg.png -------------------------------------------------------------------------------- /static/ubold/images/multiple-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/multiple-arrow.png -------------------------------------------------------------------------------- /static/ubold/images/products/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/products/product-1.jpg -------------------------------------------------------------------------------- /static/ubold/images/products/product-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/products/product-10.jpg -------------------------------------------------------------------------------- /static/ubold/images/products/product-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/products/product-11.jpg -------------------------------------------------------------------------------- /static/ubold/images/products/product-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/products/product-12.jpg -------------------------------------------------------------------------------- /static/ubold/images/products/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/products/product-2.jpg -------------------------------------------------------------------------------- /static/ubold/images/products/product-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/products/product-3.jpg -------------------------------------------------------------------------------- /static/ubold/images/products/product-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/products/product-4.jpg -------------------------------------------------------------------------------- /static/ubold/images/products/product-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/products/product-5.jpg -------------------------------------------------------------------------------- /static/ubold/images/products/product-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/products/product-6.jpg -------------------------------------------------------------------------------- /static/ubold/images/products/product-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/products/product-7.jpg -------------------------------------------------------------------------------- /static/ubold/images/products/product-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/products/product-8.jpg -------------------------------------------------------------------------------- /static/ubold/images/products/product-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/products/product-9.jpg -------------------------------------------------------------------------------- /static/ubold/images/small/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/small/img-1.jpg -------------------------------------------------------------------------------- /static/ubold/images/small/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/small/img-2.jpg -------------------------------------------------------------------------------- /static/ubold/images/small/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/small/img-3.jpg -------------------------------------------------------------------------------- /static/ubold/images/small/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/small/img-4.jpg -------------------------------------------------------------------------------- /static/ubold/images/small/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/small/img-5.jpg -------------------------------------------------------------------------------- /static/ubold/images/small/img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/small/img-6.jpg -------------------------------------------------------------------------------- /static/ubold/images/small/img-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/small/img-7.jpg -------------------------------------------------------------------------------- /static/ubold/images/users/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CorePHP-Tmail-Service/50eb13c76bf83fd03e46422ba64d12e0a8ea0f17/static/ubold/images/users/avatar.png -------------------------------------------------------------------------------- /static/ubold/js/pages/add-product.init.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){$("#product-description").summernote({height:180,minHeight:null,maxHeight:null,focus:!1}),$(".select2").select2()}); -------------------------------------------------------------------------------- /static/ubold/js/pages/animation.init.js: -------------------------------------------------------------------------------- 1 | function testAnim(n){$("#animationSandbox").removeClass().addClass(n+" animated").one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",function(){$(this).removeClass()})}$(document).ready(function(){$(".js--triggerAnimation").click(function(n){n.preventDefault(),testAnim($(".js--animations").val())}),$(".js--animations").change(function(){testAnim($(this).val())})}); -------------------------------------------------------------------------------- /static/ubold/js/pages/bootstrap-tables.init.js: -------------------------------------------------------------------------------- 1 | function invoiceFormatter(e,t){return' Order #'+e+""}function nameFormatter(e,t){return' '+e+""}function dateFormatter(e,t){t.id;return' '+e+""}function statusFormatter(e,t){var n;"Paid"==e?n="success":"Unpaid"==e?n="warning":"Shipped"==e?n="info":"Refunded"==e&&(n="danger");t.id;return'
'+e+"
"}function priceSorter(e,t){return(e=+e.substring(1))>(t=+t.substring(1))?1:e%D Days
%H Hours
%M Minutes
%S Seconds
'))})}); -------------------------------------------------------------------------------- /static/ubold/js/pages/crm-dashboard.init.js: -------------------------------------------------------------------------------- 1 | !function(e){"use strict";var a=function(){};a.prototype.createBarChart=function(e,a,o,r,t,i){Morris.Bar({element:e,data:a,xkey:o,ykeys:r,labels:t,hideHover:"auto",resize:!0,gridLineColor:"#eeeeee",barSizeRatio:.4,barColors:i})},a.prototype.createLineChart=function(e,a,o,r,t,i,n,l,b){Morris.Line({element:e,data:a,xkey:o,ykeys:r,labels:t,fillOpacity:i,pointFillColors:n,pointStrokeColors:l,behaveLikeLine:!0,gridLineColor:"#eef0f2",hideHover:"auto",lineWidth:"3px",pointSize:0,resize:!0,lineColors:b})},a.prototype.createDonutChart=function(e,a,o){Morris.Donut({element:e,data:a,barSize:.2,resize:!0,colors:o})},a.prototype.init=function(){this.createBarChart("morris-bar-example",[{y:"2012",a:100,b:90},{y:"2013",a:75,b:65},{y:"2014",a:50,b:40},{y:"2015",a:75,b:65},{y:"2016",a:50,b:40},{y:"2017",a:75,b:65},{y:"2018",a:100,b:90}],"y",["a","b"],["Won Deal","Lost Deal"],["#02c0ce","#0acf97"]);this.createLineChart("deals-analytics",[{y:"2010",a:50,b:0},{y:"2011",a:75,b:50},{y:"2012",a:30,b:80},{y:"2013",a:50,b:50},{y:"2014",a:75,b:10},{y:"2015",a:50,b:40},{y:"2016",a:75,b:50},{y:"2017",a:100,b:70}],"y",["a","b"],["Won Deal","Lost Deal"],["0.1"],["#ffffff"],["#999999"],["#1abc9c","#f1556c"]);this.createDonutChart("morris-donut-example",[{label:"Group 1",value:12},{label:"Group 2",value:30},{label:"Group 3",value:20}],["#4fc6e1","#6658dd","#ebeff2"])},e.CRMDashboard=new a,e.CRMDashboard.Constructor=a}(window.jQuery),function(e){"use strict";e.CRMDashboard.init()}(window.jQuery); -------------------------------------------------------------------------------- /static/ubold/js/pages/crm-leads.init.js: -------------------------------------------------------------------------------- 1 | !function(e){"use strict";var a=function(){};a.prototype.createStackedChart=function(e,a,t,r,s,o){Morris.Bar({element:e,data:a,xkey:t,ykeys:r,stacked:!0,labels:s,hideHover:"auto",resize:!0,gridLineColor:"#eeeeee",barSizeRatio:.2,barColors:o})},a.prototype.init=function(){this.createStackedChart("leads-statics",[{y:"2012",a:75,b:65},{y:"2013",a:50,b:40},{y:"2014",a:75,b:65},{y:"2015",a:50,b:40},{y:"2016",a:75,b:65},{y:"2017",a:100,b:90},{y:"2018",a:80,b:65}],"y",["a","b"],["Won Leads","Lost Leads"],["#4a81d4","#e3eaef"])},e.LeadsCharts=new a,e.LeadsCharts.Constructor=a}(window.jQuery),function(e){"use strict";e.LeadsCharts.init()}(window.jQuery); -------------------------------------------------------------------------------- /static/ubold/js/pages/crm-opportunities.init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){var e,t=function(){$("#status-chart").sparkline([20,40,30,10,28],{type:"pie",width:"220",height:"220",sliceColors:["#4fc6e1","#6658dd","#f7b84b","#f1556c","#1abc9c"]})};t(),$(window).resize(function(i){clearTimeout(e),e=setTimeout(function(){t()},300)})}); -------------------------------------------------------------------------------- /static/ubold/js/pages/dashboard-4.init.js: -------------------------------------------------------------------------------- 1 | !function(e){"use strict";var a=function(){};a.prototype.createBarChart=function(e,a,t,r,o,i){Morris.Bar({element:e,data:a,xkey:t,ykeys:r,labels:o,hideHover:"auto",resize:!0,gridLineColor:"#eeeeee",barSizeRatio:.2,barColors:i})},a.prototype.createAreaChartDotted=function(e,a,t,r,o,i,n,s,l,y){Morris.Area({element:e,pointSize:3,lineWidth:1,data:r,xkey:o,ykeys:i,labels:n,hideHover:"auto",pointFillColors:s,pointStrokeColors:l,resize:!0,smooth:!1,gridLineColor:"#eef0f2",lineColors:y})},a.prototype.createDonutChart=function(e,a,t){Morris.Donut({element:e,data:a,barSize:.2,resize:!0,colors:t})},a.prototype.init=function(){this.createBarChart("morris-bar-example",[{y:"2012",a:87},{y:"2013",a:75},{y:"2014",a:50},{y:"2015",a:75},{y:"2016",a:50},{y:"2017",a:38},{y:"2018",a:72}],"y",["a"],["Statistics"],["#02c0ce"]);this.createAreaChartDotted("morris-area-with-dotted",0,0,[{y:"2012",a:10,b:20},{y:"2013",a:75,b:65},{y:"2014",a:50,b:40},{y:"2015",a:75,b:65},{y:"2016",a:50,b:40},{y:"2017",a:75,b:65},{y:"2018",a:90,b:60}],"y",["a","b"],["Bitcoin","Litecoin"],["#ffffff"],["#999999"],["#4a81d4","#e3eaef"]);this.createDonutChart("morris-donut-example",[{label:" Total Sales ",value:12},{label:" Campaign ",value:30},{label:" Daily Sales ",value:20}],["#4fc6e1","#6658dd","#ebeff2"])},e.Dashboard4=new a,e.Dashboard4.Constructor=a}(window.jQuery),function(e){"use strict";e.Dashboard4.init()}(window.jQuery); -------------------------------------------------------------------------------- /static/ubold/js/pages/datatables.init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){$("#basic-datatable").DataTable({language:{paginate:{previous:"",next:""}},drawCallback:function(){$(".dataTables_paginate > .pagination").addClass("pagination-rounded")}});var a=$("#datatable-buttons").DataTable({lengthChange:!1,buttons:["copy","print","pdf"],language:{paginate:{previous:"",next:""}},drawCallback:function(){$(".dataTables_paginate > .pagination").addClass("pagination-rounded")}});$("#selection-datatable").DataTable({select:{style:"multi"},language:{paginate:{previous:"",next:""}},drawCallback:function(){$(".dataTables_paginate > .pagination").addClass("pagination-rounded")}}),$("#key-datatable").DataTable({keys:!0,language:{paginate:{previous:"",next:""}},drawCallback:function(){$(".dataTables_paginate > .pagination").addClass("pagination-rounded")}}),a.buttons().container().appendTo("#datatable-buttons_wrapper .col-md-6:eq(0)")}); -------------------------------------------------------------------------------- /static/ubold/js/pages/ecommerce-dashboard.init.js: -------------------------------------------------------------------------------- 1 | !function(e){"use strict";var t=function(){};t.prototype.createAreaChartDotted=function(e,t,r,i,o,a,c,n,s,y){Morris.Area({element:e,pointSize:3,lineWidth:2,data:i,xkey:o,ykeys:a,labels:c,hideHover:"auto",pointFillColors:n,pointStrokeColors:s,resize:!0,behaveLikeLine:!0,fillOpacity:.4,gridLineColor:"#eef0f2",lineColors:y})},t.prototype.init=function(){this.createAreaChartDotted("morris-area-with-dotted",0,0,[{y:"2008",a:100,b:90,c:40},{y:"2009",a:75,b:65,c:20},{y:"2010",a:50,b:40,c:50},{y:"2011",a:75,b:65,c:95},{y:"2012",a:50,b:40,c:22},{y:"2013",a:75,b:65,c:56},{y:"2014",a:100,b:90,c:60},{y:"2015",a:100,b:90,c:40},{y:"2016",a:75,b:65,c:20},{y:"2017",a:50,b:40,c:50},{y:"2018",a:75,b:65,c:95},{y:"2019",a:50,b:40,c:22}],"y",["a","b","c"],["Desktops","Tablets","Mobiles"],["#ffffff"],["#999999"],["#ebeff2","#f1556c","#4a81d4"])},e.MorrisCharts=new t,e.MorrisCharts.Constructor=t}(window.jQuery),function(e){"use strict";e.MorrisCharts.init()}(window.jQuery); -------------------------------------------------------------------------------- /static/ubold/js/pages/form-fileuploads.init.js: -------------------------------------------------------------------------------- 1 | $(".dropify").dropify({messages:{default:"Drag and drop a file here or click",replace:"Drag and drop or click to replace",remove:"Remove",error:"Ooops, something wrong appended."},error:{fileSize:"The file size is too big (1M max)."}}); -------------------------------------------------------------------------------- /static/ubold/js/pages/form-masks.init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){$('[data-toggle="input-mask"]').each(function(a,e){var t=$(e).data("maskFormat"),n=$(e).data("reverse");null!=n?$(e).mask(t,{reverse:n}):$(e).mask(t)})}),jQuery(function(a){a(".autonumber").autoNumeric("init")}); -------------------------------------------------------------------------------- /static/ubold/js/pages/form-quilljs.init.js: -------------------------------------------------------------------------------- 1 | var quill=new Quill("#snow-editor",{theme:"snow",modules:{toolbar:[[{font:[]},{size:[]}],["bold","italic","underline","strike"],[{color:[]},{background:[]}],[{script:"super"},{script:"sub"}],[{header:[!1,1,2,3,4,5,6]},"blockquote","code-block"],[{list:"ordered"},{list:"bullet"},{indent:"-1"},{indent:"+1"}],["direction",{align:[]}],["link","image","video","formula"],["clean"]]}});quill=new Quill("#bubble-editor",{theme:"bubble"}); -------------------------------------------------------------------------------- /static/ubold/js/pages/form-summernote.init.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function(){$("#summernote-editor").summernote({height:250,minHeight:null,maxHeight:null,focus:!1}),$("#summernote-inline").summernote({airMode:!0})}); -------------------------------------------------------------------------------- /static/ubold/js/pages/form-validation.init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){$(".parsley-examples").parsley()}),$(function(){$("#demo-form").parsley().on("field:validated",function(){var e=0===$(".parsley-error").length;$(".alert-info").toggleClass("d-none",!e),$(".alert-warning").toggleClass("d-none",e)}).on("form:submit",function(){return!1})}); -------------------------------------------------------------------------------- /static/ubold/js/pages/form-wizard.init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){"use strict";$("#basicwizard").bootstrapWizard(),$("#progressbarwizard").bootstrapWizard({onTabShow:function(t,r,a){var o=(a+1)/r.find("li").length*100;$("#progressbarwizard").find(".bar").css({width:o+"%"})}}),$("#btnwizard").bootstrapWizard({nextSelector:".button-next",previousSelector:".button-previous",firstSelector:".button-first",lastSelector:".button-last"}),$("#rootwizard").bootstrapWizard({onNext:function(t,r,a){var o=$($(t).data("targetForm"));if(o&&(o.addClass("was-validated"),!1===o[0].checkValidity()))return event.preventDefault(),event.stopPropagation(),!1}})}); -------------------------------------------------------------------------------- /static/ubold/js/pages/form-xeditable.init.js: -------------------------------------------------------------------------------- 1 | $(function(){$.fn.editableform.buttons='',$("#inline-username").editable({type:"text",pk:1,name:"username",title:"Enter username",mode:"inline",inputclass:"form-control-sm"}),$("#inline-firstname").editable({validate:function(e){if(""==$.trim(e))return"This field is required"},mode:"inline",inputclass:"form-control-sm"}),$("#inline-sex").editable({prepend:"not selected",mode:"inline",inputclass:"form-control-sm",source:[{value:1,text:"Male"},{value:2,text:"Female"}],display:function(e,t){var n=$.grep(t,function(t){return t.value==e});n.length?$(this).text(n[0].text).css("color",{"":"gray",1:"green",2:"blue"}[e]):$(this).empty()}}),$("#inline-group").editable({showbuttons:!1,mode:"inline",inputclass:"form-control-sm"}),$("#inline-status").editable({mode:"inline",inputclass:"form-control-sm"}),$("#inline-dob").editable({mode:"inline",inputclass:"form-control-sm"}),$("#inline-event").editable({placement:"right",mode:"inline",combodate:{firstItem:"name"},inputclass:"form-control-sm"}),$("#inline-comments").editable({showbuttons:"bottom",mode:"inline",inputclass:"form-control-sm"}),$("#inline-fruits").editable({pk:1,limit:3,mode:"inline",inputclass:"form-control-sm",source:[{value:1,text:"Banana"},{value:2,text:"Peach"},{value:3,text:"Apple"},{value:4,text:"Watermelon"},{value:5,text:"Orange"}]})}); -------------------------------------------------------------------------------- /static/ubold/js/pages/gallery.init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){$(".image-popup").magnificPopup({type:"image",closeOnContentClick:!1,closeBtnInside:!1,mainClass:"mfp-with-zoom mfp-img-mobile",image:{verticalFit:!0,titleSrc:function(e){return e.el.attr("title")}},gallery:{enabled:!0},zoom:{enabled:!0,duration:300,opener:function(e){return e.find("img")}}}),$(".filter-menu .filter-menu-item").click(function(){$(".filter-menu .filter-menu-item").removeClass("active"),$(this).addClass("active")}),$(function(){var e="";$(".filter-menu-item").click(function(){e=$(this).attr("data-rel"),$(".filterable-content").fadeTo(100,0),$(".filterable-content .filter-item").not("."+e).fadeOut().removeClass(""),setTimeout(function(){$("."+e).fadeIn().addClass(""),$(".filterable-content").fadeTo(300,1)},300)})})}); -------------------------------------------------------------------------------- /static/ubold/js/pages/inbox.js: -------------------------------------------------------------------------------- 1 | $("input:checkbox").change(function(){$(this).is(":checked")?$(this).parent().parent().parent().addClass("mail-selected"):$(this).parent().parent().parent().removeClass("mail-selected")}); -------------------------------------------------------------------------------- /static/ubold/js/pages/jquery.chat.js: -------------------------------------------------------------------------------- 1 | !function(t){"use strict";var i=function(){this.$body=t("body"),this.$chatInput=t(".chat-input"),this.$chatList=t(".conversation-list"),this.$chatSendBtn=t(".chat-send")};i.prototype.save=function(){var i=this.$chatInput.val(),s=moment().format("h:mm");""==i?(sweetAlert("Oops...","You forgot to enter your chat message","error"),this.$chatInput.focus()):(t('
  • male'+s+'
    Geneva

    '+i+"

  • ").appendTo(".conversation-list"),this.$chatInput.val(""),this.$chatInput.focus(),this.$chatList.scrollTo("100%","100%",{easing:"swing"}))},i.prototype.init=function(){var t=this;t.$chatInput.keypress(function(i){if(13==i.which)return t.save(),!1}),t.$chatSendBtn.click(function(i){return t.save(),!1})},t.ChatApp=new i,t.ChatApp.Constructor=i}(window.jQuery),function(t){"use strict";t.ChatApp.init()}(window.jQuery); -------------------------------------------------------------------------------- /static/ubold/js/pages/jsgrid.init.js: -------------------------------------------------------------------------------- 1 | var JsDBSource={loadData:function(e){console.log(e);var t=$.Deferred();return $.ajax({type:"GET",url:"assets/data/jsgrid.json",data:e,success:function(a){var n=$.grep(a,function(t){return!(e.Name&&!(t.Name.indexOf(e.Name)>-1)||e.Age&&t.Age!==e.Age||e.Address&&!(t.Address.indexOf(e.Address)>-1)||e.Country&&t.Country!==e.Country)});t.resolve(n)}}),t.promise()},insertItem:function(e){return $.ajax({type:"POST",url:"assets/data/jsgrid.json",data:e})},updateItem:function(e){return $.ajax({type:"PUT",url:"assets/data/jsgrid.json",data:e})},deleteItem:function(e){return $.ajax({type:"DELETE",url:"assets/data/jsgrid.json",data:e})},countries:[{Name:"",Id:0},{Name:"United States",Id:1},{Name:"Canada",Id:2},{Name:"United Kingdom",Id:3},{Name:"France",Id:4},{Name:"Brazil",Id:5},{Name:"China",Id:6},{Name:"Russia",Id:7}]};!function(e){"use strict";var t=function(){this.$body=e("body")};t.prototype.createGrid=function(t,a){t.jsGrid(e.extend({height:"550",width:"100%",filtering:!0,editing:!0,inserting:!0,sorting:!0,paging:!0,autoload:!0,pageSize:10,pageButtonCount:5,deleteConfirm:"Do you really want to delete the entry?"},a))},t.prototype.init=function(){var t={fields:[{name:"Name",type:"text",width:150},{name:"Age",type:"number",width:50},{name:"Address",type:"text",width:200},{name:"Country",type:"select",items:JsDBSource.countries,valueField:"Id",textField:"Name"},{type:"control"}],controller:JsDBSource};this.createGrid(e("#jsGrid"),t)},e.GridApp=new t,e.GridApp.Constructor=t}(window.jQuery),function(e){"use strict";e.GridApp.init()}(window.jQuery); -------------------------------------------------------------------------------- /static/ubold/js/pages/kanban.init.js: -------------------------------------------------------------------------------- 1 | !function(o){"use strict";var t=function(){this.$body=o("body")};o("#upcoming, #inprogress, #completed").sortable({connectWith:".taskList",placeholder:"task-placeholder",forcePlaceholderSize:!0,update:function(t,e){o("#todo").sortable("toArray"),o("#inprogress").sortable("toArray"),o("#completed").sortable("toArray")}}).disableSelection(),t.prototype.init=function(){},o.KanbanBoard=new t,o.KanbanBoard.Constructor=t}(window.jQuery),function(o){"use strict";o.KanbanBoard.init()}(window.jQuery); -------------------------------------------------------------------------------- /static/ubold/js/pages/loading-btn.init.js: -------------------------------------------------------------------------------- 1 | Ladda.bind(".ladda-button",{timeout:2e3}),Ladda.bind(".progress-demo .ladda-button",{callback:function(a){var t=0,d=setInterval(function(){t=Math.min(t+.1*Math.random(),1),a.setProgress(t),1===t&&(a.stop(),clearInterval(d))},200)}}); -------------------------------------------------------------------------------- /static/ubold/js/pages/nestable.init.js: -------------------------------------------------------------------------------- 1 | !function(t){"use strict";var e=function(){};e.prototype.updateOutput=function(e){var a=e.length?e:t(e.target),n=a.data("output");window.JSON?n.val(window.JSON.stringify(a.nestable("serialize"))):n.val("JSON browser support required for this demo.")},e.prototype.init=function(){t("#nestable_list_1").nestable({group:1}).on("change",this.updateOutput),t("#nestable_list_2").nestable({group:1}).on("change",this.updateOutput),this.updateOutput(t("#nestable_list_1").data("output",t("#nestable_list_1_output"))),this.updateOutput(t("#nestable_list_2").data("output",t("#nestable_list_2_output"))),t("#nestable_list_menu").on("click",function(e){var a=t(e.target).data("action");"expand-all"===a&&t(".dd").nestable("expandAll"),"collapse-all"===a&&t(".dd").nestable("collapseAll")}),t("#nestable_list_3").nestable()},t.Nestable=new e,t.Nestable.Constructor=e}(window.jQuery),function(t){"use strict";t.Nestable.init()}(window.jQuery); -------------------------------------------------------------------------------- /static/ubold/js/pages/peity.init.js: -------------------------------------------------------------------------------- 1 | !function(t){"use strict";var e=function(){};e.prototype.createLine=function(e,i,n,r,a){return t(e).peity("line",{fill:i,stroke:n,width:r,height:a}),t(e)},e.prototype.init=function(){var t=this.createLine(".updating-chart","#5fbeaa","#5fbeaa",120,40);setInterval(function(){var e=Math.round(10*Math.random()),i=t.text().split(",");i.shift(),i.push(e),t.text(i.join(",")).change()},1e3)},t.PeityChart=new e,t.PeityChart.Constructor=e}(window.jQuery),function(t){"use strict";t.PeityChart.init()}(window.jQuery); -------------------------------------------------------------------------------- /static/ubold/js/pages/range-sliders.init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){$("#range_01").ionRangeSlider(),$("#range_02").ionRangeSlider({min:100,max:1e3,from:550}),$("#range_03").ionRangeSlider({type:"double",grid:!0,min:0,max:1e3,from:200,to:800,prefix:"$"}),$("#range_04").ionRangeSlider({type:"double",grid:!0,min:-1e3,max:1e3,from:-500,to:500}),$("#range_05").ionRangeSlider({type:"double",grid:!0,min:-1e3,max:1e3,from:-500,to:500,step:250}),$("#range_06").ionRangeSlider({grid:!0,from:3,values:["January","February","March","April","May","June","July","August","September","October","November","December"]}),$("#range_07").ionRangeSlider({grid:!0,min:1e3,max:1e6,from:2e5,step:1e3,prettify_enabled:!0}),$("#range_08").ionRangeSlider({min:100,max:1e3,from:550,disable:!0}),$("#range_09").ionRangeSlider({grid:!0,min:18,max:70,from:30,prefix:"Age ",max_postfix:"+"}),$("#range_10").ionRangeSlider({type:"double",min:100,max:200,from:145,to:155,prefix:"Weight: ",postfix:" million pounds",decorate_both:!0}),$("#range_11").ionRangeSlider({type:"single",grid:!0,min:-90,max:90,from:0,postfix:"°"}),$("#range_12").ionRangeSlider({type:"double",min:1e3,max:2e3,from:1200,to:1800,hide_min_max:!0,hide_from_to:!0,grid:!0})}); -------------------------------------------------------------------------------- /static/ubold/js/pages/responsive-table.init.js: -------------------------------------------------------------------------------- 1 | !function(e){"use strict";var n=function(){};n.prototype.init=function(){e(".table-rep-plugin").responsiveTable("update")},e.ResponsiveTable=new n,e.ResponsiveTable.Constructor=n}(window.jQuery),function(e){"use strict";e.ResponsiveTable.init()}(window.jQuery); -------------------------------------------------------------------------------- /static/ubold/js/pages/tabledit.init.js: -------------------------------------------------------------------------------- 1 | !function(t){"use strict";var o=function(){};o.prototype.init=function(){t("#inline-editable").Tabledit({inputClass:"form-control form-control-sm",editButton:!1,deleteButton:!1,columns:{identifier:[0,"id"],editable:[[1,"col1"],[2,"col2"],[3,"col3"],[4,"col4"],[6,"col6"]]}}),t("#btn-editable").Tabledit({buttons:{edit:{class:"btn btn-success",html:'',action:"edit"}},inputClass:"form-control form-control-sm",deleteButton:!1,saveButton:!1,autoFocus:!1,columns:{identifier:[0,"id"],editable:[[1,"col1"],[2,"col2"],[3,"col3"],[4,"col4"],[6,"col6"]]}})},t.EditableTable=new o,t.EditableTable.Constructor=o}(window.jQuery),function(t){"use strict";t.EditableTable.init()}(window.jQuery); -------------------------------------------------------------------------------- /static/ubold/js/pages/tablesaw.init.js: -------------------------------------------------------------------------------- 1 | $(function(){$(document).trigger("enhance.tablesaw")}); -------------------------------------------------------------------------------- /static/ubold/js/pages/tickets.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){$("#tickets-table").DataTable({language:{paginate:{previous:"",next:""}},drawCallback:function(){$(".dataTables_paginate > .pagination").addClass("pagination-rounded")}})}); -------------------------------------------------------------------------------- /static/ubold/js/pages/tour.init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){hopscotch.startTour({id:"my-intro",steps:[{target:"logo-tour",title:"Logo Here",content:"You can find here status of user who's currently online.",placement:"bottom",yOffset:10},{target:"display-title-tour",title:"Display Text",content:"Click on the button and make sidebar navigation small.",placement:"top",zindex:999},{target:"page-title-tour",title:"User settings",content:"You can edit you profile info here.",placement:"bottom",zindex:999},{target:"thankyou-tour",title:"Thank you !",content:"Here you can change theme skins and other features.",placement:"top",zindex:999}],showPrevButton:!0})}); -------------------------------------------------------------------------------- /static/ubold/js/pages/treeview.init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){$("#basicTree").jstree({core:{themes:{responsive:!1}},types:{default:{icon:"md md-folder"},file:{icon:"md md-insert-drive-file"}},plugins:["types"]}),$("#checkTree").jstree({core:{themes:{responsive:!1}},types:{default:{icon:"fa fa-folder"},file:{icon:"fa fa-file"}},plugins:["types","checkbox"]}),$("#dragTree").jstree({core:{check_callback:!0,themes:{responsive:!1}},types:{default:{icon:"fa fa-folder"},file:{icon:"fa fa-file"}},plugins:["types","dnd"]}),$("#ajaxTree").jstree({core:{check_callback:!0,themes:{responsive:!1},data:{url:function(e){return"#"===e.id?"../plugins/jstree/ajax_roots.json":"../plugins/jstree/ajax_children.json"},data:function(e){return{id:e.id}}}},types:{default:{icon:"fa fa-folder"},file:{icon:"fa fa-file"}},plugins:["contextmenu","dnd","search","state","types","wholerow"]})}); -------------------------------------------------------------------------------- /static/ubold/js/pages/widgets.init.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){var o,i=function(){$("#sparkline1").sparkline([0,23,43,35,44,45,56,37,40],{type:"line",width:"100%",height:"165",chartRangeMax:50,lineColor:"#00acc1",fillColor:"rgba(0, 172, 193, 0.2)",highlightLineColor:"rgba(0,0,0,.1)",highlightSpotColor:"rgba(0,0,0,.2)",maxSpotColor:!1,minSpotColor:!1,spotColor:!1,lineWidth:1}),$("#sparkline1").sparkline([25,23,26,24,25,32,30,24,19],{type:"line",width:"100%",height:"165",chartRangeMax:40,lineColor:"#f1556c",fillColor:"rgba(229, 43, 76, 0.3)",composite:!0,highlightLineColor:"rgba(0,0,0,.1)",highlightSpotColor:"rgba(0,0,0,.2)",maxSpotColor:!1,minSpotColor:!1,spotColor:!1,lineWidth:1}),$("#sparkline2").sparkline([3,6,7,8,6,4,7,10,12,7,4,9,12,13,11,12],{type:"bar",height:"165",barWidth:"10",barSpacing:"3",barColor:"#00acc1"}),$("#sparkline3").sparkline([20,40,30,10],{type:"pie",width:"165",height:"165",sliceColors:["#00acc1","#4b88e4","#e3eaef","#fd7e14"]})};i(),$(window).resize(function(e){clearTimeout(o),o=setTimeout(function(){i(),DrawMouseSpeed()},300)})}); -------------------------------------------------------------------------------- /static/ubold/libs/bootstrap-touchspin/jquery.bootstrap-touchspin.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Bootstrap TouchSpin - v4.2.5 3 | * A mobile and touch friendly input spinner component for Bootstrap 3 & 4. 4 | * http://www.virtuosoft.eu/code/bootstrap-touchspin/ 5 | * 6 | * Made by István Ujj-Mészáros 7 | * Under Apache License v2.0 License 8 | */ 9 | /* This CSS file is unnecessary if you are not using vertical buttons functionality */ 10 | 11 | .bootstrap-touchspin .input-group-btn-vertical { 12 | position: absolute; 13 | right: 0; 14 | height: 100%; 15 | z-index: 11; 16 | } 17 | 18 | .bootstrap-touchspin .input-group-btn-vertical > .btn { 19 | position: absolute; 20 | right: 0; 21 | height: 50%; 22 | padding: 0; 23 | width: 2em; 24 | text-align: center; 25 | line-height: 1; 26 | } 27 | 28 | .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up { 29 | border-radius: 0 4px 0 0; 30 | top: 0; 31 | } 32 | 33 | .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down { 34 | border-radius: 0 0 4px 0; 35 | bottom: 0; 36 | } 37 | 38 | 39 | -------------------------------------------------------------------------------- /static/ubold/libs/datatables/buttons.bootstrap4.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap integration for DataTables' Buttons 3 | ©2016 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs4","datatables.net-buttons"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-bs4")(a,b).$;b.fn.dataTable.Buttons||require("datatables.net-buttons")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){var a=c.fn.dataTable;c.extend(!0,a.Buttons.defaults,{dom:{container:{className:"dt-buttons btn-group"}, 6 | button:{className:"btn btn-secondary"},collection:{tag:"div",className:"dt-button-collection dropdown-menu",button:{tag:"a",className:"dt-button dropdown-item",active:"active",disabled:"disabled"}}}});a.ext.buttons.collection.className+=" dropdown-toggle";return a.Buttons}); 7 | -------------------------------------------------------------------------------- /static/ubold/libs/datatables/responsive.bootstrap4.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap 4 integration for DataTables' Responsive 3 | ©2016 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs4","datatables.net-responsive"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-bs4")(a,b).$;b.fn.dataTable.Responsive||require("datatables.net-responsive")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){var a=c.fn.dataTable,b=a.Responsive.display,g=b.modal,e=c(' -------------------------------------------------------------------------------- /themes/cleanex/tmail_trash.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/php-imap/php-imap/src/PhpImap'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- 1 | 11 | array ( 12 | 'PhpImap\\' => 8, 13 | ), 14 | ); 15 | 16 | public static $prefixDirsPsr4 = array ( 17 | 'PhpImap\\' => 18 | array ( 19 | 0 => __DIR__ . '/..' . '/php-imap/php-imap/src/PhpImap', 20 | ), 21 | ); 22 | 23 | public static function getInitializer(ClassLoader $loader) 24 | { 25 | return \Closure::bind(function () use ($loader) { 26 | $loader->prefixLengthsPsr4 = ComposerStaticInit8f72734b30fe024d932f890c78436474::$prefixLengthsPsr4; 27 | $loader->prefixDirsPsr4 = ComposerStaticInit8f72734b30fe024d932f890c78436474::$prefixDirsPsr4; 28 | 29 | }, null, ClassLoader::class); 30 | } 31 | } 32 | --------------------------------------------------------------------------------