├── modules ├── error │ ├── view │ │ └── error.tpl.php │ └── controller │ │ ├── error_log │ │ └── error.php ├── about │ ├── .DS_Store │ ├── view │ │ └── .DS_Store │ └── controller │ │ ├── .DS_Store │ │ ├── about.php │ │ └── error_log ├── help │ ├── .DS_Store │ └── controller │ │ ├── .DS_Store │ │ ├── error_log │ │ └── help.php ├── index │ ├── .DS_Store │ ├── controller │ │ ├── index.php │ │ └── error_log │ └── view │ │ └── error_log ├── login │ ├── .DS_Store │ └── controller │ │ ├── error_log │ │ └── login.php ├── terms │ ├── .DS_Store │ ├── view │ │ └── .DS_Store │ └── controller │ │ ├── .DS_Store │ │ ├── error_log │ │ └── terms.php ├── account │ ├── .DS_Store │ ├── view │ │ ├── .DS_Store │ │ ├── error_log │ │ └── account.tpl.php │ └── controller │ │ ├── .DS_Store │ │ ├── error_log │ │ └── account.php ├── register │ ├── .DS_Store │ ├── view │ │ └── .DS_Store │ └── controller │ │ ├── .DS_Store │ │ ├── error_log │ │ └── register.php ├── completar │ ├── .DS_Store │ ├── view │ │ ├── .DS_Store │ │ └── error_log │ └── controller │ │ ├── .DS_Store │ │ ├── completar.php │ │ └── error_log └── logout │ ├── view │ ├── logout.tpl.php │ └── error_log │ └── controller │ ├── logout.php │ └── error_log ├── includes └── frontend │ ├── close.php │ ├── banner_out.php │ ├── banner.php │ └── navbar.php ├── .DS_Store ├── lib ├── .DS_Store └── phpmail │ ├── language.zip │ ├── Exception.php │ └── language │ ├── phpmailer.lang-zh_cn.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-zh.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-am.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-ba.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-rs.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-pt_br.php │ └── phpmailer.lang-fr.php ├── .htaccess ├── templates ├── backoffice │ └── assets │ │ ├── .DS_Store │ │ ├── css │ │ ├── .DS_Store │ │ ├── custom.css │ │ └── demo.css │ │ ├── img │ │ ├── .DS_Store │ │ ├── favicon.png │ │ ├── new_logo.png │ │ ├── apple-icon.png │ │ ├── background.jpg │ │ ├── tim_80x80.png │ │ ├── faces │ │ │ ├── .DS_Store │ │ │ ├── face-0.jpg │ │ │ ├── face-1.jpg │ │ │ ├── face-2.jpg │ │ │ └── face-3.jpg │ │ ├── tables │ │ │ └── .DS_Store │ │ └── background │ │ │ └── .DS_Store │ │ ├── js │ │ └── .DS_Store │ │ ├── fonts │ │ ├── .DS_Store │ │ ├── themify.eot │ │ ├── themify.ttf │ │ └── themify.woff │ │ └── sass │ │ ├── .DS_Store │ │ ├── paper │ │ ├── mixins │ │ │ ├── _tabs.scss │ │ │ ├── _cards.scss │ │ │ ├── _navbars.scss │ │ │ ├── _icons.scss │ │ │ ├── _inputs.scss │ │ │ ├── _transparency.scss │ │ │ ├── _labels.scss │ │ │ ├── _sidebar.scss │ │ │ └── _buttons.scss │ │ ├── _mixins.scss │ │ ├── _footers.scss │ │ ├── _alerts.scss │ │ ├── _misc.scss │ │ └── _tables.scss │ │ └── paper-dashboard.scss └── exchange │ └── assets │ ├── img │ ├── bg-2.png │ ├── client.png │ ├── favicon.png │ ├── icon-10.png │ ├── icon-11.png │ ├── icon-12.png │ ├── icon-9.png │ ├── newlogo.png │ ├── about-bg.jpg │ ├── banner-bg.jpg │ ├── signup-bg.jpg │ ├── exchange-ill.jpg │ └── favicon │ │ ├── favicon.ico │ │ ├── apple-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── ms-icon-70x70.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── apple-icon-precomposed.png │ │ ├── ff4c068056e88e5d0d1f02525ec852c6.ico.zip │ │ ├── browserconfig.xml │ │ └── manifest.json │ └── fonts │ ├── Flaticon.eot │ ├── Flaticon.ttf │ ├── Flaticon.eot? │ ├── Flaticon.woff │ ├── fa-brands-400.eot │ ├── fa-brands-400.ttf │ ├── fa-solid-900.eot │ ├── fa-solid-900.eot? │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ ├── fa-brands-400.eot? │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.eot? │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-solid-900.woff2 │ ├── fa-regular-400.woff2 │ ├── icofont │ └── fonts │ │ ├── icofont.woff │ │ └── icofont.woff2 │ └── flaticon.css ├── vendor ├── guzzlehttp │ ├── guzzle │ │ ├── src │ │ │ ├── Exception │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ ├── TransferException.php │ │ │ │ ├── ClientException.php │ │ │ │ ├── ServerException.php │ │ │ │ ├── GuzzleException.php │ │ │ │ ├── SeekException.php │ │ │ │ ├── ConnectException.php │ │ │ │ └── BadResponseException.php │ │ │ ├── functions_include.php │ │ │ ├── Handler │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ ├── CurlHandler.php │ │ │ │ └── Proxy.php │ │ │ └── Cookie │ │ │ │ └── SessionCookieJar.php │ │ ├── LICENSE │ │ └── composer.json │ ├── psr7 │ │ ├── src │ │ │ ├── functions_include.php │ │ │ ├── NoSeekStream.php │ │ │ ├── LazyOpenStream.php │ │ │ ├── DroppingStream.php │ │ │ └── InflateStream.php │ │ ├── LICENSE │ │ └── composer.json │ └── promises │ │ ├── src │ │ ├── functions_include.php │ │ ├── CancellationException.php │ │ ├── PromisorInterface.php │ │ ├── AggregateException.php │ │ ├── TaskQueueInterface.php │ │ ├── RejectionException.php │ │ ├── TaskQueue.php │ │ └── FulfilledPromise.php │ │ ├── Makefile │ │ ├── composer.json │ │ ├── LICENSE │ │ └── CHANGELOG.md ├── autoload.php ├── composer │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_files.php │ ├── autoload_psr4.php │ ├── LICENSE │ └── autoload_static.php ├── psr │ └── http-message │ │ ├── README.md │ │ ├── composer.json │ │ ├── LICENSE │ │ └── CHANGELOG.md └── php-curl-class │ └── php-curl-class │ ├── src │ └── Curl │ │ ├── StringUtil.php │ │ ├── Encoder.php │ │ └── Decoder.php │ ├── composer.json │ ├── CHANGELOG.md │ └── LICENSE ├── configs ├── smtp.php └── coins.txt ├── resources └── database.sql └── index.php /modules/error/view/error.tpl.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/frontend/close.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/.DS_Store -------------------------------------------------------------------------------- /lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/lib/.DS_Store -------------------------------------------------------------------------------- /lib/phpmail/language.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/lib/phpmail/language.zip -------------------------------------------------------------------------------- /modules/about/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/about/.DS_Store -------------------------------------------------------------------------------- /modules/help/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/help/.DS_Store -------------------------------------------------------------------------------- /modules/index/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/index/.DS_Store -------------------------------------------------------------------------------- /modules/login/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/login/.DS_Store -------------------------------------------------------------------------------- /modules/terms/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/terms/.DS_Store -------------------------------------------------------------------------------- /modules/account/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/account/.DS_Store -------------------------------------------------------------------------------- /modules/register/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/register/.DS_Store -------------------------------------------------------------------------------- /includes/frontend/banner_out.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /modules/about/view/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/about/view/.DS_Store -------------------------------------------------------------------------------- /modules/completar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/completar/.DS_Store -------------------------------------------------------------------------------- /modules/terms/view/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/terms/view/.DS_Store -------------------------------------------------------------------------------- /modules/account/view/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/account/view/.DS_Store -------------------------------------------------------------------------------- /modules/register/view/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/register/view/.DS_Store -------------------------------------------------------------------------------- /modules/about/controller/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/about/controller/.DS_Store -------------------------------------------------------------------------------- /modules/completar/view/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/completar/view/.DS_Store -------------------------------------------------------------------------------- /modules/help/controller/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/help/controller/.DS_Store -------------------------------------------------------------------------------- /modules/terms/controller/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/terms/controller/.DS_Store -------------------------------------------------------------------------------- /modules/account/controller/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/account/controller/.DS_Store -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteBase / 3 | RewriteRule ^/?([a-zA-Z_]+)$ index.php?page=$1 [L,QSA] 4 | php_flag display_errors 1 5 | -------------------------------------------------------------------------------- /modules/completar/controller/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/completar/controller/.DS_Store -------------------------------------------------------------------------------- /modules/register/controller/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/modules/register/controller/.DS_Store -------------------------------------------------------------------------------- /templates/backoffice/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/.DS_Store -------------------------------------------------------------------------------- /templates/exchange/assets/img/bg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/bg-2.png -------------------------------------------------------------------------------- /templates/backoffice/assets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/css/.DS_Store -------------------------------------------------------------------------------- /templates/backoffice/assets/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/.DS_Store -------------------------------------------------------------------------------- /templates/backoffice/assets/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/js/.DS_Store -------------------------------------------------------------------------------- /templates/exchange/assets/img/client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/client.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/icon-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/icon-10.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/icon-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/icon-11.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/icon-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/icon-12.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/icon-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/icon-9.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/newlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/newlogo.png -------------------------------------------------------------------------------- /templates/backoffice/assets/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/fonts/.DS_Store -------------------------------------------------------------------------------- /templates/backoffice/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/favicon.png -------------------------------------------------------------------------------- /templates/backoffice/assets/img/new_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/new_logo.png -------------------------------------------------------------------------------- /templates/backoffice/assets/sass/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/sass/.DS_Store -------------------------------------------------------------------------------- /templates/backoffice/assets/sass/paper/mixins/_tabs.scss: -------------------------------------------------------------------------------- 1 | @mixin pill-style($color){ 2 | border: 1px solid $color; 3 | color: $color; 4 | } -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/Flaticon.eot -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/Flaticon.ttf -------------------------------------------------------------------------------- /templates/exchange/assets/img/about-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/about-bg.jpg -------------------------------------------------------------------------------- /templates/exchange/assets/img/banner-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/banner-bg.jpg -------------------------------------------------------------------------------- /templates/exchange/assets/img/signup-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/signup-bg.jpg -------------------------------------------------------------------------------- /templates/backoffice/assets/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/fonts/themify.eot -------------------------------------------------------------------------------- /templates/backoffice/assets/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/fonts/themify.ttf -------------------------------------------------------------------------------- /templates/backoffice/assets/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/fonts/themify.woff -------------------------------------------------------------------------------- /templates/backoffice/assets/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/apple-icon.png -------------------------------------------------------------------------------- /templates/backoffice/assets/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/background.jpg -------------------------------------------------------------------------------- /templates/backoffice/assets/img/tim_80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/tim_80x80.png -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/Flaticon.eot?: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/Flaticon.eot? -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/Flaticon.woff -------------------------------------------------------------------------------- /templates/exchange/assets/img/exchange-ill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/exchange-ill.jpg -------------------------------------------------------------------------------- /templates/backoffice/assets/img/faces/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/faces/.DS_Store -------------------------------------------------------------------------------- /templates/backoffice/assets/img/faces/face-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/faces/face-0.jpg -------------------------------------------------------------------------------- /templates/backoffice/assets/img/faces/face-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/faces/face-1.jpg -------------------------------------------------------------------------------- /templates/backoffice/assets/img/faces/face-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/faces/face-2.jpg -------------------------------------------------------------------------------- /templates/backoffice/assets/img/faces/face-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/faces/face-3.jpg -------------------------------------------------------------------------------- /templates/backoffice/assets/img/tables/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/tables/.DS_Store -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-solid-900.eot?: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-solid-900.eot? -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/favicon.ico -------------------------------------------------------------------------------- /modules/logout/view/logout.tpl.php: -------------------------------------------------------------------------------- 1 | '; 4 | 5 | ?> 6 | -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-brands-400.eot?: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-brands-400.eot? -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-regular-400.eot?: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-regular-400.eot? -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /templates/backoffice/assets/img/background/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/backoffice/assets/img/background/.DS_Store -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/apple-icon.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/icofont/fonts/icofont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/icofont/fonts/icofont.woff -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/icofont/fonts/icofont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/fonts/icofont/fonts/icofont.woff2 -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /templates/exchange/assets/img/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMX9/Crypto-Exchange-PHP/HEAD/templates/exchange/assets/img/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php: -------------------------------------------------------------------------------- 1 | 2 | #ffffff -------------------------------------------------------------------------------- /modules/logout/controller/logout.php: -------------------------------------------------------------------------------- 1 | display('modules/logout/view/logout.tpl.php'); 13 | 14 | 15 | } 16 | 17 | } 18 | 19 | $module = new defaultpage; 20 | 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /templates/backoffice/assets/sass/paper/mixins/_icons.scss: -------------------------------------------------------------------------------- 1 | @mixin icon-background ($icon-url){ 2 | background-image : url($icon-url); 3 | 4 | } 5 | 6 | @mixin icon-shape ($size, $padding, $border-radius) { 7 | height: $size; 8 | width: $size; 9 | padding: $padding; 10 | border-radius: $border-radius; 11 | display: inline-table; 12 | 13 | } -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/PromisorInterface.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |

Nome Nome

4 | 5 | 6 | 7 |
8 | -------------------------------------------------------------------------------- /templates/backoffice/assets/sass/paper/_mixins.scss: -------------------------------------------------------------------------------- 1 | //Utilities 2 | 3 | @import "mixins/transparency"; 4 | @import "mixins/vendor-prefixes"; 5 | 6 | 7 | //Components 8 | 9 | @import "mixins/buttons"; 10 | @import "mixins/inputs"; 11 | @import "mixins/labels"; 12 | @import "mixins/tabs"; 13 | @import "mixins/navbars"; 14 | @import "mixins/icons"; 15 | @import "mixins/cards"; 16 | @import "mixins/chartist"; 17 | @import "mixins/sidebar"; -------------------------------------------------------------------------------- /vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- 1 | PSR Http Message 2 | ================ 3 | 4 | This repository holds all interfaces/classes/traits related to 5 | [PSR-7](http://www.php-fig.org/psr/psr-7/). 6 | 7 | Note that this is not a HTTP message implementation of its own. It is merely an 8 | interface that describes a HTTP message. See the specification for more details. 9 | 10 | Usage 11 | ----- 12 | 13 | We'll certainly need some stuff in here. -------------------------------------------------------------------------------- /templates/backoffice/assets/sass/paper/mixins/_inputs.scss: -------------------------------------------------------------------------------- 1 | @mixin input-size($padding-vertical, $padding-horizontal, $height){ 2 | padding: $padding-vertical $padding-horizontal; 3 | height: $height; 4 | } 5 | 6 | @mixin placeholder($color, $opacity){ 7 | color: $color; 8 | @include opacity(1); 9 | } 10 | 11 | @mixin light-form(){ 12 | border-radius: 0; 13 | border:0; 14 | padding: 0; 15 | background-color: transparent; 16 | 17 | } -------------------------------------------------------------------------------- /configs/smtp.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/guzzlehttp/promises/src/functions_include.php', 10 | 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php', 11 | '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', 12 | ); 13 | -------------------------------------------------------------------------------- /modules/account/controller/error_log: -------------------------------------------------------------------------------- 1 | [27-May-2019 20:51:09 America/New_York] PHP Warning: require_once(lib/controllers.php): failed to open stream: No such file or directory in /home/gmtemhic/demo.cryptoexchange-software.us/modules/account/controller/account.php on line 5 2 | [27-May-2019 20:51:09 America/New_York] PHP Fatal error: require_once(): Failed opening required 'lib/controllers.php' (include_path='.:/opt/alt/php73/usr/share/pear') in /home/gmtemhic/demo.cryptoexchange-software.us/modules/account/controller/account.php on line 5 3 | -------------------------------------------------------------------------------- /modules/register/controller/error_log: -------------------------------------------------------------------------------- 1 | [27-May-2019 20:51:20 America/New_York] PHP Warning: require_once(lib/controllers.php): failed to open stream: No such file or directory in /home/gmtemhic/demo.cryptoexchange-software.us/modules/register/controller/register.php on line 5 2 | [27-May-2019 20:51:20 America/New_York] PHP Fatal error: require_once(): Failed opening required 'lib/controllers.php' (include_path='.:/opt/alt/php73/usr/share/pear') in /home/gmtemhic/demo.cryptoexchange-software.us/modules/register/controller/register.php on line 5 3 | -------------------------------------------------------------------------------- /modules/account/view/error_log: -------------------------------------------------------------------------------- 1 | [27-May-2019 20:51:09 America/New_York] PHP Notice: Undefined variable: _SESSION in /home/gmtemhic/demo.cryptoexchange-software.us/modules/account/view/account.tpl.php on line 45 2 | [27-May-2019 20:51:09 America/New_York] PHP Fatal error: Uncaught Error: Call to a member function query() on null in /home/gmtemhic/demo.cryptoexchange-software.us/modules/account/view/account.tpl.php:46 3 | Stack trace: 4 | #0 {main} 5 | thrown in /home/gmtemhic/demo.cryptoexchange-software.us/modules/account/view/account.tpl.php on line 46 6 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/NoSeekStream.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/psr/http-message/src'), 10 | 'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'), 11 | 'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'), 12 | 'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'), 13 | 'Curl\\' => array($vendorDir . '/php-curl-class/php-curl-class/src/Curl'), 14 | ); 15 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/TaskQueueInterface.php: -------------------------------------------------------------------------------- 1 | frontend_header("$website_name Sobre","SEO"); 18 | $this->frontend_nav(); 19 | $this->display("modules/$filename/view/$filename.tpl.php"); 20 | $this->frontend_footer(); 21 | $this->frontend_closeHeader(); 22 | 23 | 24 | } 25 | 26 | } 27 | 28 | 29 | $module = new defaultpage; 30 | 31 | 32 | ?> 33 | 34 | 35 | -------------------------------------------------------------------------------- /modules/help/controller/help.php: -------------------------------------------------------------------------------- 1 | frontend_header("$website_name Ajuda","SEO"); 18 | $this->frontend_nav(); 19 | $this->display("modules/$filename/view/$filename.tpl.php"); 20 | $this->frontend_footer(); 21 | $this->frontend_closeHeader(); 22 | 23 | 24 | } 25 | 26 | } 27 | 28 | 29 | $module = new defaultpage; 30 | 31 | 32 | ?> 33 | 34 | 35 | -------------------------------------------------------------------------------- /modules/index/controller/index.php: -------------------------------------------------------------------------------- 1 | frontend_header("$website_name Inicio","SEO"); 18 | $this->frontend_nav(); 19 | $this->display("modules/$filename/view/$filename.tpl.php"); 20 | $this->frontend_footer(); 21 | $this->frontend_closeHeader(); 22 | 23 | 24 | } 25 | 26 | } 27 | 28 | 29 | $module = new defaultpage; 30 | 31 | 32 | ?> 33 | 34 | 35 | -------------------------------------------------------------------------------- /modules/error/controller/error.php: -------------------------------------------------------------------------------- 1 | frontend_header("$website_name Não Encontrada","SEO"); 18 | $this->frontend_nav(); 19 | $this->display("modules/$filename/view/$filename.tpl.php"); 20 | $this->frontend_footer(); 21 | $this->frontend_closeHeader(); 22 | 23 | 24 | } 25 | 26 | } 27 | 28 | 29 | $module = new defaultpage; 30 | 31 | 32 | ?> 33 | 34 | 35 | -------------------------------------------------------------------------------- /modules/terms/controller/terms.php: -------------------------------------------------------------------------------- 1 | frontend_header("$website_name Termos de Serviço","SEO"); 18 | $this->frontend_nav(); 19 | $this->display("modules/$filename/view/$filename.tpl.php"); 20 | $this->frontend_footer(); 21 | $this->frontend_closeHeader(); 22 | 23 | 24 | } 25 | 26 | } 27 | 28 | 29 | $module = new defaultpage; 30 | 31 | 32 | ?> 33 | 34 | 35 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Exception/SeekException.php: -------------------------------------------------------------------------------- 1 | stream = $stream; 16 | $msg = $msg ?: 'Could not seek the stream to position ' . $pos; 17 | parent::__construct($msg); 18 | } 19 | 20 | /** 21 | * @return StreamInterface 22 | */ 23 | public function getStream() 24 | { 25 | return $this->stream; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "psr/http-message", 3 | "description": "Common interface for HTTP messages", 4 | "keywords": ["psr", "psr-7", "http", "http-message", "request", "response"], 5 | "homepage": "https://github.com/php-fig/http-message", 6 | "license": "MIT", 7 | "authors": [ 8 | { 9 | "name": "PHP-FIG", 10 | "homepage": "http://www.php-fig.org/" 11 | } 12 | ], 13 | "require": { 14 | "php": ">=5.3.0" 15 | }, 16 | "autoload": { 17 | "psr-4": { 18 | "Psr\\Http\\Message\\": "src/" 19 | } 20 | }, 21 | "extra": { 22 | "branch-alias": { 23 | "dev-master": "1.0.x-dev" 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php: -------------------------------------------------------------------------------- 1 | a{ 22 | color: $font-color; 23 | } 24 | } 25 | .divider{ 26 | background-color: rgba($font-color,.2); 27 | } 28 | 29 | } 30 | 31 | } 32 | 33 | @mixin sidebar-active-color($font-color){ 34 | .nav{ 35 | li{ 36 | &.active > a{ 37 | color: $font-color; 38 | opacity: 1; 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "guzzlehttp/promises", 3 | "description": "Guzzle promises library", 4 | "keywords": ["promise"], 5 | "license": "MIT", 6 | "authors": [ 7 | { 8 | "name": "Michael Dowling", 9 | "email": "mtdowling@gmail.com", 10 | "homepage": "https://github.com/mtdowling" 11 | } 12 | ], 13 | "require": { 14 | "php": ">=5.5.0" 15 | }, 16 | "require-dev": { 17 | "phpunit/phpunit": "^4.0" 18 | }, 19 | "autoload": { 20 | "psr-4": { 21 | "GuzzleHttp\\Promise\\": "src/" 22 | }, 23 | "files": ["src/functions_include.php"] 24 | }, 25 | "scripts": { 26 | "test": "vendor/bin/phpunit", 27 | "test-ci": "vendor/bin/phpunit --coverage-text" 28 | }, 29 | "extra": { 30 | "branch-alias": { 31 | "dev-master": "1.4-dev" 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php: -------------------------------------------------------------------------------- 1 | frontend_header("$website_name Account","SEO"); 21 | $this->frontend_nav(); 22 | $this->display("modules/$filename/view/$filename.tpl.php"); 23 | $this->frontend_footer(); 24 | $this->frontend_closeHeader(); 25 | 26 | }else{ 27 | ?> 28 | 31 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /modules/about/controller/error_log: -------------------------------------------------------------------------------- 1 | [27-May-2019 20:25:26 America/New_York] PHP Warning: require_once(lib/controllers.php): failed to open stream: No such file or directory in /home/gmtemhic/demo.cryptoexchange-software.us/modules/about/controller/about.php on line 5 2 | [27-May-2019 20:25:26 America/New_York] PHP Fatal error: require_once(): Failed opening required 'lib/controllers.php' (include_path='.:/opt/alt/php73/usr/share/pear') in /home/gmtemhic/demo.cryptoexchange-software.us/modules/about/controller/about.php on line 5 3 | [27-May-2019 20:51:07 America/New_York] PHP Warning: require_once(lib/controllers.php): failed to open stream: No such file or directory in /home/gmtemhic/demo.cryptoexchange-software.us/modules/about/controller/about.php on line 5 4 | [27-May-2019 20:51:07 America/New_York] PHP Fatal error: require_once(): Failed opening required 'lib/controllers.php' (include_path='.:/opt/alt/php73/usr/share/pear') in /home/gmtemhic/demo.cryptoexchange-software.us/modules/about/controller/about.php on line 5 5 | -------------------------------------------------------------------------------- /modules/register/controller/register.php: -------------------------------------------------------------------------------- 1 | frontend_header("$website_name Register","SEO"); 21 | $this->frontend_nav(); 22 | $this->display("modules/$filename/view/$filename.tpl.php"); 23 | $this->frontend_footer(); 24 | $this->frontend_closeHeader(); 25 | 26 | }else{ 27 | 28 | ?> 29 | 32 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /modules/completar/controller/completar.php: -------------------------------------------------------------------------------- 1 | frontend_header("$website_name Completar","SEO"); 20 | $this->frontend_nav(); 21 | $this->display("modules/$filename/view/$filename.tpl.php"); 22 | $this->frontend_footer(); 23 | $this->frontend_closeHeader(); 24 | 25 | }else{ 26 | 27 | ?> 28 | 31 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /modules/completar/controller/error_log: -------------------------------------------------------------------------------- 1 | [27-May-2019 20:51:10 America/New_York] PHP Warning: require_once(lib/controllers.php): failed to open stream: No such file or directory in /home/gmtemhic/demo.cryptoexchange-software.us/modules/completar/controller/completar.php on line 5 2 | [27-May-2019 20:51:10 America/New_York] PHP Fatal error: require_once(): Failed opening required 'lib/controllers.php' (include_path='.:/opt/alt/php73/usr/share/pear') in /home/gmtemhic/demo.cryptoexchange-software.us/modules/completar/controller/completar.php on line 5 3 | [27-May-2019 21:03:55 America/New_York] PHP Warning: require_once(lib/controllers.php): failed to open stream: No such file or directory in /home/gmtemhic/demo.cryptoexchange-software.us/modules/completar/controller/completar.php on line 5 4 | [27-May-2019 21:03:55 America/New_York] PHP Fatal error: require_once(): Failed opening required 'lib/controllers.php' (include_path='.:/opt/alt/php73/usr/share/pear') in /home/gmtemhic/demo.cryptoexchange-software.us/modules/completar/controller/completar.php on line 5 5 | -------------------------------------------------------------------------------- /modules/login/controller/login.php: -------------------------------------------------------------------------------- 1 | frontend_header("$website_name Login","SEO"); 19 | $this->frontend_nav(); 20 | $this->display("modules/$filename/view/$filename.tpl.php"); 21 | $this->frontend_footer(); 22 | $this->frontend_closeHeader(); 23 | 24 | }else{ 25 | ?> 26 | 29 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/LazyOpenStream.php: -------------------------------------------------------------------------------- 1 | filename = $filename; 27 | $this->mode = $mode; 28 | } 29 | 30 | /** 31 | * Creates the underlying stream lazily when required. 32 | * 33 | * @return StreamInterface 34 | */ 35 | protected function createStream() 36 | { 37 | return stream_for(try_fopen($this->filename, $this->mode)); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /vendor/php-curl-class/php-curl-class/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "php-curl-class/php-curl-class", 3 | "description": "PHP Curl Class makes it easy to send HTTP requests and integrate with web APIs.", 4 | "homepage": "https://github.com/php-curl-class/php-curl-class", 5 | "license": "Unlicense", 6 | "keywords": [ 7 | "php", "curl", "class", "api", "api-client", "client", "framework", "http", "http-client", "http-proxy", "json", 8 | "php-curl", "php-curl-library", "proxy", "requests", "restful", "web-scraper", "web-scraping", "web-service", 9 | "xml" 10 | ], 11 | "authors": [ 12 | { 13 | "name": "Zach Borboa" 14 | } 15 | ], 16 | "require": { 17 | "php": ">=5.3", 18 | "ext-curl": "*", 19 | "ext-mbstring": "*" 20 | }, 21 | "require-dev": { 22 | "ext-gd": "*", 23 | "phpunit/phpunit": "*", 24 | "squizlabs/php_codesniffer": "*" 25 | }, 26 | "autoload": { 27 | "psr-4": { 28 | "Curl\\": "src/Curl/" 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Copyright (c) Nils Adermann, Jordi Boggiano 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is furnished 9 | to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all 12 | copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | 22 | -------------------------------------------------------------------------------- /vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014 PHP Framework Interoperability Group 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /modules/index/view/error_log: -------------------------------------------------------------------------------- 1 | [27-May-2019 20:51:16 America/New_York] PHP Warning: file(configs/coins.txt): failed to open stream: No such file or directory in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/view/index.tpl.php on line 22 2 | [27-May-2019 20:51:16 America/New_York] PHP Warning: Invalid argument supplied for foreach() in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/view/index.tpl.php on line 23 3 | [27-May-2019 20:51:16 America/New_York] PHP Warning: file(configs/coins.txt): failed to open stream: No such file or directory in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/view/index.tpl.php on line 36 4 | [27-May-2019 20:51:16 America/New_York] PHP Warning: Invalid argument supplied for foreach() in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/view/index.tpl.php on line 37 5 | [27-May-2019 20:51:16 America/New_York] PHP Fatal error: Uncaught Error: Call to a member function isLoggedin() on null in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/view/index.tpl.php:219 6 | Stack trace: 7 | #0 {main} 8 | thrown in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/view/index.tpl.php on line 219 9 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 Michael Dowling, https://github.com/mtdowling 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "guzzlehttp/psr7", 3 | "type": "library", 4 | "description": "PSR-7 message implementation that also provides common utility methods", 5 | "keywords": ["request", "response", "message", "stream", "http", "uri", "url"], 6 | "license": "MIT", 7 | "authors": [ 8 | { 9 | "name": "Michael Dowling", 10 | "email": "mtdowling@gmail.com", 11 | "homepage": "https://github.com/mtdowling" 12 | }, 13 | { 14 | "name": "Tobias Schultze", 15 | "homepage": "https://github.com/Tobion" 16 | } 17 | ], 18 | "require": { 19 | "php": ">=5.4.0", 20 | "psr/http-message": "~1.0" 21 | }, 22 | "require-dev": { 23 | "phpunit/phpunit": "~4.0" 24 | }, 25 | "provide": { 26 | "psr/http-message-implementation": "1.0" 27 | }, 28 | "autoload": { 29 | "psr-4": { 30 | "GuzzleHttp\\Psr7\\": "src/" 31 | }, 32 | "files": ["src/functions_include.php"] 33 | }, 34 | "extra": { 35 | "branch-alias": { 36 | "dev-master": "1.4-dev" 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011-2018 Michael Dowling, https://github.com/mtdowling 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015-2016 Michael Dowling, https://github.com/mtdowling 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /templates/backoffice/assets/sass/paper/_footers.scss: -------------------------------------------------------------------------------- 1 | .footer{ 2 | background-attachment: fixed; 3 | position: relative; 4 | line-height: 20px; 5 | nav { 6 | ul { 7 | list-style: none; 8 | margin: 0; 9 | padding: 0; 10 | font-weight: normal; 11 | li{ 12 | display: inline-block; 13 | padding: 10px 15px; 14 | margin: 15px 3px; 15 | line-height: 20px; 16 | text-align: center; 17 | } 18 | a:not(.btn){ 19 | color: $font-color; 20 | display: block; 21 | margin-bottom: 3px; 22 | 23 | &:focus, 24 | &:hover{ 25 | color: $default-states-color; 26 | } 27 | } 28 | } 29 | } 30 | .copyright{ 31 | color: $font-color; 32 | padding: 10px 15px; 33 | font-size: 14px; 34 | white-space: nowrap; 35 | margin: 15px 3px; 36 | line-height: 20px; 37 | text-align: center; 38 | } 39 | .heart{ 40 | color: $danger-color; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /vendor/psr/http-message/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file, in reverse chronological order by release. 4 | 5 | ## 1.0.1 - 2016-08-06 6 | 7 | ### Added 8 | 9 | - Nothing. 10 | 11 | ### Deprecated 12 | 13 | - Nothing. 14 | 15 | ### Removed 16 | 17 | - Nothing. 18 | 19 | ### Fixed 20 | 21 | - Updated all `@return self` annotation references in interfaces to use 22 | `@return static`, which more closelly follows the semantics of the 23 | specification. 24 | - Updated the `MessageInterface::getHeaders()` return annotation to use the 25 | value `string[][]`, indicating the format is a nested array of strings. 26 | - Updated the `@link` annotation for `RequestInterface::withRequestTarget()` 27 | to point to the correct section of RFC 7230. 28 | - Updated the `ServerRequestInterface::withUploadedFiles()` parameter annotation 29 | to add the parameter name (`$uploadedFiles`). 30 | - Updated a `@throws` annotation for the `UploadedFileInterface::moveTo()` 31 | method to correctly reference the method parameter (it was referencing an 32 | incorrect parameter name previously). 33 | 34 | ## 1.0.0 - 2016-05-18 35 | 36 | Initial stable release; reflects accepted PSR-7 specification. 37 | -------------------------------------------------------------------------------- /templates/backoffice/assets/sass/paper-dashboard.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | 3 | ========================================================= 4 | * Paper Dashboard - v1.1.2 5 | ========================================================= 6 | 7 | * Product Page: http://www.creative-tim.com/product/paper-dashboard 8 | * Copyright 2017 Creative Tim (http://www.creative-tim.com) 9 | * Licensed under MIT (https://github.com/creativetimofficial/paper-dashboard/blob/master/LICENSE.md) 10 | 11 | ========================================================= 12 | 13 | * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 14 | 15 | */ 16 | 17 | 18 | @import "paper/variables"; 19 | @import "paper/mixins"; 20 | 21 | @import "paper/typography"; 22 | 23 | // Core CSS 24 | @import "paper/misc"; 25 | @import "paper/sidebar-and-main-panel"; 26 | @import "paper/buttons"; 27 | @import "paper/inputs"; 28 | 29 | @import "paper/alerts"; 30 | @import "paper/tables"; 31 | 32 | @import "paper/checkbox-radio"; 33 | @import "paper/navbars"; 34 | @import "paper/footers"; 35 | 36 | // Fancy Stuff 37 | 38 | @import "paper/dropdown"; 39 | @import "paper/cards"; 40 | @import "paper/chartist"; 41 | @import "paper/responsive"; 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/DroppingStream.php: -------------------------------------------------------------------------------- 1 | stream = $stream; 23 | $this->maxLength = $maxLength; 24 | } 25 | 26 | public function write($string) 27 | { 28 | $diff = $this->maxLength - $this->stream->getSize(); 29 | 30 | // Begin returning 0 when the underlying stream is too large. 31 | if ($diff <= 0) { 32 | return 0; 33 | } 34 | 35 | // Write the stream or a subset of the stream if needed. 36 | if (strlen($string) < $diff) { 37 | return $this->stream->write($string); 38 | } 39 | 40 | return $this->stream->write(substr($string, 0, $diff)); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /vendor/php-curl-class/php-curl-class/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | PHP Curl Class uses semantic versioning with version numbers written as `MAJOR.MINOR.PATCH`. You may safely update 4 | `MINOR` and `PATCH` version changes. It is recommended to review `MAJOR` changes prior to upgrade as there may be 5 | backwards-incompatible changes that will affect existing usage. 6 | 7 | ### Changes 8 | 9 | (TODO: Add changes for next `MAJOR` version release.) 10 | 11 | ### Manual Review 12 | 13 | Manually view changes on the [comparison page](https://github.com/php-curl-class/php-curl-class/compare/). For example, 14 | visit [7.4.0...8.0.0](https://github.com/php-curl-class/php-curl-class/compare/7.4.0...8.0.0) to compare the changes for 15 | the `MAJOR` upgrade from 7.4.0 to 8.0.0. Comparing against `HEAD` is also possible using the `tag...HEAD` syntax 16 | ([8.3.0...HEAD](https://github.com/php-curl-class/php-curl-class/compare/8.3.0...HEAD)). 17 | 18 | View the log between releases: 19 | 20 | $ git fetch --tags 21 | $ git log 7.4.0...8.0.0 22 | 23 | View the code changes between releases: 24 | 25 | $ git fetch --tags 26 | $ git diff 7.4.0...8.0.0 27 | 28 | View only the source log and code changes between releases: 29 | 30 | $ git log 7.4.0...8.0.0 "src/" 31 | $ git diff 7.4.0...8.0.0 "src/" 32 | -------------------------------------------------------------------------------- /vendor/php-curl-class/php-curl-class/LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /vendor/php-curl-class/php-curl-class/src/Curl/Encoder.php: -------------------------------------------------------------------------------- 1 | =5.5", 17 | "guzzlehttp/psr7": "^1.4", 18 | "guzzlehttp/promises": "^1.0" 19 | }, 20 | "require-dev": { 21 | "ext-curl": "*", 22 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", 23 | "psr/log": "^1.0" 24 | }, 25 | "autoload": { 26 | "files": ["src/functions_include.php"], 27 | "psr-4": { 28 | "GuzzleHttp\\": "src/" 29 | } 30 | }, 31 | "autoload-dev": { 32 | "psr-4": { 33 | "GuzzleHttp\\Tests\\": "tests/" 34 | } 35 | }, 36 | "suggest": { 37 | "psr/log": "Required for using the Log middleware" 38 | }, 39 | "extra": { 40 | "branch-alias": { 41 | "dev-master": "6.3-dev" 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /lib/phpmail/Exception.php: -------------------------------------------------------------------------------- 1 | 9 | * @author Jim Jagielski (jimjag) 10 | * @author Andy Prevost (codeworxtech) 11 | * @author Brent R. Matzelle (original founder) 12 | * @copyright 2012 - 2017 Marcus Bointon 13 | * @copyright 2010 - 2012 Jim Jagielski 14 | * @copyright 2004 - 2009 Andy Prevost 15 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 16 | * @note This program is distributed in the hope that it will be useful - WITHOUT 17 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 18 | * FITNESS FOR A PARTICULAR PURPOSE. 19 | */ 20 | 21 | namespace PHPMailer\PHPMailer; 22 | 23 | /** 24 | * PHPMailer exception handler. 25 | * 26 | * @author Marcus Bointon 27 | */ 28 | class Exception extends \Exception 29 | { 30 | /** 31 | * Prettify error message output. 32 | * 33 | * @return string 34 | */ 35 | public function errorMessage() 36 | { 37 | return '' . htmlspecialchars($this->getMessage()) . "
\n"; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # CHANGELOG 2 | 3 | 4 | ## 1.3.1 - 2016-12-20 5 | 6 | ### Fixed 7 | 8 | - `wait()` foreign promise compatibility 9 | 10 | 11 | ## 1.3.0 - 2016-11-18 12 | 13 | ### Added 14 | 15 | - Adds support for custom task queues. 16 | 17 | ### Fixed 18 | 19 | - Fixed coroutine promise memory leak. 20 | 21 | 22 | ## 1.2.0 - 2016-05-18 23 | 24 | ### Changed 25 | 26 | - Update to now catch `\Throwable` on PHP 7+ 27 | 28 | 29 | ## 1.1.0 - 2016-03-07 30 | 31 | ### Changed 32 | 33 | - Update EachPromise to prevent recurring on a iterator when advancing, as this 34 | could trigger fatal generator errors. 35 | - Update Promise to allow recursive waiting without unwrapping exceptions. 36 | 37 | 38 | ## 1.0.3 - 2015-10-15 39 | 40 | ### Changed 41 | 42 | - Update EachPromise to immediately resolve when the underlying promise iterator 43 | is empty. Previously, such a promise would throw an exception when its `wait` 44 | function was called. 45 | 46 | 47 | ## 1.0.2 - 2015-05-15 48 | 49 | ### Changed 50 | 51 | - Conditionally require functions.php. 52 | 53 | 54 | ## 1.0.1 - 2015-06-24 55 | 56 | ### Changed 57 | 58 | - Updating EachPromise to call next on the underlying promise iterator as late 59 | as possible to ensure that generators that generate new requests based on 60 | callbacks are not iterated until after callbacks are invoked. 61 | 62 | 63 | ## 1.0.0 - 2015-05-12 64 | 65 | - Initial release 66 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/RejectionException.php: -------------------------------------------------------------------------------- 1 | reason = $reason; 21 | 22 | $message = 'The promise was rejected'; 23 | 24 | if ($description) { 25 | $message .= ' with reason: ' . $description; 26 | } elseif (is_string($reason) 27 | || (is_object($reason) && method_exists($reason, '__toString')) 28 | ) { 29 | $message .= ' with reason: ' . $this->reason; 30 | } elseif ($reason instanceof \JsonSerializable) { 31 | $message .= ' with reason: ' 32 | . json_encode($this->reason, JSON_PRETTY_PRINT); 33 | } 34 | 35 | parent::__construct($message); 36 | } 37 | 38 | /** 39 | * Returns the rejection reason. 40 | * 41 | * @return mixed 42 | */ 43 | public function getReason() 44 | { 45 | return $this->reason; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- 1 | 6 | * @author young 7 | * @author Teddysun 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 | -------------------------------------------------------------------------------- /vendor/php-curl-class/php-curl-class/src/Curl/Decoder.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 | -------------------------------------------------------------------------------- /lib/phpmail/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 | -------------------------------------------------------------------------------- /lib/phpmail/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 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php: -------------------------------------------------------------------------------- 1 | factory = isset($options['handle_factory']) 29 | ? $options['handle_factory'] 30 | : new CurlFactory(3); 31 | } 32 | 33 | public function __invoke(RequestInterface $request, array $options) 34 | { 35 | if (isset($options['delay'])) { 36 | usleep($options['delay'] * 1000); 37 | } 38 | 39 | $easy = $this->factory->create($request, $options); 40 | curl_exec($easy->handle); 41 | $easy->errno = curl_errno($easy->handle); 42 | 43 | return CurlFactory::finish($this, $easy, $this->factory); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /templates/backoffice/assets/sass/paper/_alerts.scss: -------------------------------------------------------------------------------- 1 | .alert{ 2 | border: 0; 3 | border-radius: 0; 4 | color: #FFFFFF; 5 | padding: 10px 15px; 6 | font-size: 14px; 7 | 8 | .container &{ 9 | border-radius: 4px; 10 | 11 | } 12 | .navbar &{ 13 | border-radius: 0; 14 | left: 0; 15 | position: absolute; 16 | right: 0; 17 | top: 85px; 18 | width: 100%; 19 | z-index: 3; 20 | } 21 | .navbar:not(.navbar-transparent) &{ 22 | top: 70px; 23 | } 24 | 25 | span[data-notify="icon"]{ 26 | font-size: 30px; 27 | display: block; 28 | left: 15px; 29 | position: absolute; 30 | top: 50%; 31 | margin-top: -20px; 32 | } 33 | 34 | .close ~ span{ 35 | display: block; 36 | max-width: 89%; 37 | } 38 | 39 | &[data-notify="container"]{ 40 | padding: 10px 10px 10px 20px; 41 | border-radius: $border-radius-base; 42 | } 43 | 44 | &.alert-with-icon{ 45 | padding-left: 65px; 46 | } 47 | } 48 | .alert-info{ 49 | background-color: $bg-info; 50 | color: $info-states-color; 51 | } 52 | .alert-success { 53 | background-color: $bg-success; 54 | color: $success-states-color; 55 | } 56 | .alert-warning { 57 | background-color: $bg-warning; 58 | color: $warning-states-color; 59 | } 60 | .alert-danger { 61 | background-color: $bg-danger; 62 | color: $danger-states-color; 63 | } 64 | 65 | -------------------------------------------------------------------------------- /templates/backoffice/assets/css/demo.css: -------------------------------------------------------------------------------- 1 | @media (min-width: 992px){ 2 | .typo-line{ 3 | padding-left: 140px; 4 | margin-bottom: 40px; 5 | position: relative; 6 | } 7 | 8 | .typo-line .category{ 9 | transform: translateY(-50%); 10 | top: 50%; 11 | left: 0px; 12 | position: absolute; 13 | } 14 | } 15 | 16 | .icon-section { 17 | margin: 0 0 3em; 18 | clear: both; 19 | overflow: hidden; 20 | } 21 | .icon-container { 22 | width: 240px; 23 | padding: .7em 0; 24 | float: left; 25 | position: relative; 26 | text-align: left; 27 | } 28 | .icon-container [class^="ti-"], 29 | .icon-container [class*=" ti-"] { 30 | color: #000; 31 | position: absolute; 32 | margin-top: 3px; 33 | transition: .3s; 34 | } 35 | .icon-container:hover [class^="ti-"], 36 | .icon-container:hover [class*=" ti-"] { 37 | font-size: 2.2em; 38 | margin-top: -5px; 39 | } 40 | .icon-container:hover .icon-name { 41 | color: #000; 42 | } 43 | .icon-name { 44 | color: #aaa; 45 | margin-left: 35px; 46 | font-size: .8em; 47 | transition: .3s; 48 | } 49 | .icon-container:hover .icon-name { 50 | margin-left: 45px; 51 | } 52 | 53 | .places-buttons .btn{ 54 | margin-bottom: 30px 55 | } 56 | .sidebar .nav > li.active-pro{ 57 | position: absolute; 58 | width: 100%; 59 | bottom: 10px; 60 | } 61 | .sidebar .nav > li.active-pro a{ 62 | background: rgba(255, 255, 255, 0.14); 63 | opacity: 1; 64 | color: #FFFFFF; 65 | } 66 | 67 | .table-upgrade td:nth-child(2), 68 | .table-upgrade td:nth-child(3){ 69 | text-align: center; 70 | } 71 | -------------------------------------------------------------------------------- /templates/backoffice/assets/sass/paper/_misc.scss: -------------------------------------------------------------------------------- 1 | /* General overwrite */ 2 | body{ 3 | color: $font-color; 4 | font-size: $font-size-base; 5 | font-family: 'Muli', Arial, sans-serif; 6 | .wrapper{ 7 | min-height: 100vh; 8 | position: relative; 9 | } 10 | } 11 | a{ 12 | color: $info-color; 13 | 14 | &:hover, &:focus{ 15 | color: $info-states-color; 16 | text-decoration: none; 17 | } 18 | } 19 | 20 | a:focus, a:active, 21 | button::-moz-focus-inner, 22 | input::-moz-focus-inner, 23 | select::-moz-focus-inner, 24 | input[type="file"] > input[type="button"]::-moz-focus-inner{ 25 | outline:0 !important; 26 | } 27 | .ui-slider-handle:focus, 28 | .navbar-toggle, 29 | input:focus, 30 | button:focus { 31 | outline : 0 !important; 32 | } 33 | 34 | /* Animations */ 35 | .form-control, 36 | .input-group-addon, 37 | .tagsinput, 38 | .navbar, 39 | .navbar .alert{ 40 | @include transition($general-transition-time, $transition-linear); 41 | } 42 | 43 | .sidebar .nav a, 44 | .table > tbody > tr .td-actions .btn{ 45 | @include transition($fast-transition-time, $transition-ease-in); 46 | } 47 | 48 | .btn{ 49 | @include transition($ultra-fast-transition-time, $transition-ease-in); 50 | } 51 | .fa{ 52 | width: 21px; 53 | text-align: center; 54 | } 55 | .fa-base{ 56 | font-size: 1.25em !important; 57 | } 58 | 59 | .margin-top{ 60 | margin-top: 50px; 61 | } 62 | hr{ 63 | border-color: $medium-pale-bg; 64 | } 65 | .wrapper{ 66 | position: relative; 67 | top: 0; 68 | height: 100vh; 69 | } 70 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-he.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['invalid_address'] = 'כתובת שגויה: '; 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['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 Connect() failed.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'שגיאת שרת SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'לא ניתן לקבוע או לשנות את המשתנה: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Yoshi Sakai 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'] = 'Message body empty'; 13 | $PHPMAILER_LANG['encoding'] = '不明なエンコーディング: '; 14 | $PHPMAILER_LANG['execute'] = '実行できませんでした: '; 15 | $PHPMAILER_LANG['file_access'] = 'ファイルにアクセスできません: '; 16 | $PHPMAILER_LANG['file_open'] = 'ファイルエラー: ファイルを開けません: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Fromアドレスを登録する際にエラーが発生しました: '; 18 | $PHPMAILER_LANG['instantiate'] = 'メール関数が正常に動作しませんでした。'; 19 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 20 | $PHPMAILER_LANG['provide_address'] = '少なくとも1つメールアドレスを 指定する必要があります。'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' メーラーがサポートされていません。'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTPエラー: 次の受信者アドレスに 間違いがあります: '; 23 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 24 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 25 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 26 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-nb.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP kļūda: Autorizācija neizdevās.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Kļūda: Nevar izveidot savienojumu ar SMTP serveri.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Kļūda: Nepieņem informāciju.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Ziņojuma teksts ir tukšs'; 12 | $PHPMAILER_LANG['encoding'] = 'Neatpazīts kodējums: '; 13 | $PHPMAILER_LANG['execute'] = 'Neizdevās izpildīt komandu: '; 14 | $PHPMAILER_LANG['file_access'] = 'Fails nav pieejams: '; 15 | $PHPMAILER_LANG['file_open'] = 'Faila kļūda: Nevar atvērt failu: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Nepareiza sūtītāja adrese: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Nevar palaist sūtīšanas funkciju.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Nepareiza adrese: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' sūtītājs netiek atbalstīts.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Lūdzu, norādiet vismaz vienu adresātu.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP kļūda: neizdevās nosūtīt šādiem saņēmējiem: '; 22 | $PHPMAILER_LANG['signing'] = 'Autorizācijas kļūda: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP savienojuma kļūda'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP servera kļūda: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nevar piešķirt mainīgā vērtību: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-sv.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP fel: Kunde inte autentisera.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP fel: Kunde inte ansluta till SMTP-server.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fel: Data accepterades inte.'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = 'Okänt encode-format: '; 13 | $PHPMAILER_LANG['execute'] = 'Kunde inte köra: '; 14 | $PHPMAILER_LANG['file_access'] = 'Ingen åtkomst till fil: '; 15 | $PHPMAILER_LANG['file_open'] = 'Fil fel: Kunde inte öppna fil: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Följande avsändaradress är felaktig: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kunde inte initiera e-postfunktion.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Felaktig adress: '; 19 | $PHPMAILER_LANG['provide_address'] = 'Du måste ange minst en mottagares e-postadress.'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer stöds inte.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP fel: Följande mottagare är felaktig: '; 22 | $PHPMAILER_LANG['signing'] = 'Signerings fel: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() misslyckades.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP server fel: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Kunde inte definiera eller återställa variabel: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Tillägg ej tillgängligt: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-da.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP fejl: Kunne ikke logge på.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP fejl: Kunne ikke tilslutte SMTP serveren.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fejl: Data kunne ikke accepteres.'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = 'Ukendt encode-format: '; 13 | $PHPMAILER_LANG['execute'] = 'Kunne ikke køre: '; 14 | $PHPMAILER_LANG['file_access'] = 'Ingen adgang til fil: '; 15 | $PHPMAILER_LANG['file_open'] = 'Fil fejl: Kunne ikke åbne filen: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Følgende afsenderadresse er forkert: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kunne ikke initialisere email funktionen.'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer understøttes ikke.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Du skal indtaste mindst en modtagers emailadresse.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP fejl: Følgende modtagere er forkerte: '; 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 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-vi.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Lỗi SMTP: Không thể xác thực.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Lỗi SMTP: Không thể kết nối máy chủ SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Lỗi SMTP: Dữ liệu không được chấp nhận.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Không có nội dung'; 12 | $PHPMAILER_LANG['encoding'] = 'Mã hóa không xác định: '; 13 | $PHPMAILER_LANG['execute'] = 'Không thực hiện được: '; 14 | $PHPMAILER_LANG['file_access'] = 'Không thể truy cập tệp tin '; 15 | $PHPMAILER_LANG['file_open'] = 'Lỗi Tập tin: Không thể mở tệp tin: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Lỗi địa chỉ gửi đi: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Không dùng được các hàm gửi thư.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Đại chỉ emai không đúng: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' trình gửi thư không được hỗ trợ.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Bạn phải cung cấp ít nhất một địa chỉ người nhận.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Lỗi SMTP: lỗi địa chỉ người nhận: '; 22 | $PHPMAILER_LANG['signing'] = 'Lỗi đăng nhập: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Lỗi kết nối với SMTP'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Lỗi máy chủ smtp '; 25 | $PHPMAILER_LANG['variable_set'] = 'Không thể thiết lập hoặc thiết lập lại biến: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-lt.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP klaida: autentifikacija nepavyko.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP klaida: nepavyksta prisijungti prie SMTP stoties.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP klaida: duomenys nepriimti.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Laiško turinys tuščias'; 12 | $PHPMAILER_LANG['encoding'] = 'Neatpažinta koduotė: '; 13 | $PHPMAILER_LANG['execute'] = 'Nepavyko įvykdyti komandos: '; 14 | $PHPMAILER_LANG['file_access'] = 'Byla nepasiekiama: '; 15 | $PHPMAILER_LANG['file_open'] = 'Bylos klaida: Nepavyksta atidaryti: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Neteisingas siuntėjo adresas: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Nepavyko paleisti mail funkcijos.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Neteisingas adresas: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' pašto stotis nepalaikoma.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Nurodykite bent vieną gavėjo adresą.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP klaida: nepavyko išsiųsti šiems gavėjams: '; 22 | $PHPMAILER_LANG['signing'] = 'Prisijungimo klaida: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP susijungimo klaida'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP stoties klaida: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nepavyko priskirti reikšmės kintamajam: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP feilur: Kundi ikki góðkenna.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP feilur: Kundi ikki knýta samband við SMTP vert.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP feilur: Data ikki góðkent.'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = 'Ókend encoding: '; 13 | $PHPMAILER_LANG['execute'] = 'Kundi ikki útføra: '; 14 | $PHPMAILER_LANG['file_access'] = 'Kundi ikki tilganga fílu: '; 15 | $PHPMAILER_LANG['file_open'] = 'Fílu feilur: Kundi ikki opna fílu: '; 16 | $PHPMAILER_LANG['from_failed'] = 'fylgjandi Frá/From adressa miseydnaðist: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kuni ikki instantiera mail funktión.'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' er ikki supporterað.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Tú skal uppgeva minst móttakara-emailadressu(r).'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Feilur: Fylgjandi móttakarar miseydnaðust: '; 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 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-nl.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP-fout: authenticatie mislukt.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP-fout: kon niet verbinden met SMTP-host.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP-fout: data niet geaccepteerd.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Berichttekst is leeg'; 12 | $PHPMAILER_LANG['encoding'] = 'Onbekende codering: '; 13 | $PHPMAILER_LANG['execute'] = 'Kon niet uitvoeren: '; 14 | $PHPMAILER_LANG['file_access'] = 'Kreeg geen toegang tot bestand: '; 15 | $PHPMAILER_LANG['file_open'] = 'Bestandsfout: kon bestand niet openen: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Het volgende afzendersadres is mislukt: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kon mailfunctie niet initialiseren.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Ongeldig adres: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer wordt niet ondersteund.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Er moet minstens één ontvanger worden opgegeven.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP-fout: de volgende ontvangers zijn mislukt: '; 22 | $PHPMAILER_LANG['signing'] = 'Signeerfout: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Verbinding mislukt.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP-serverfout: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Kan de volgende variabele niet instellen of resetten: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-eo.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'] = 'خطأ على مستوى عنوان المرسل : '; 17 | $PHPMAILER_LANG['instantiate'] = 'لا يمكن توفير خدمة البريد.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'الإرسال غير ممكن لأن عنوان البريد الإلكتروني غير صالح: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' برنامج الإرسال غير مدعوم.'; 20 | $PHPMAILER_LANG['provide_address'] = 'يجب توفير عنوان البريد الإلكتروني لمستلم واحد على الأقل.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'خطأ SMTP: الأخطاء التالية ' . 22 | 'فشل في الارسال لكل من : '; 23 | $PHPMAILER_LANG['signing'] = 'خطأ في التوقيع: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() غير ممكن.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'خطأ على مستوى الخادم SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'لا يمكن تعيين أو إعادة تعيين متغير: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-sk.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Chyba autentifikácie.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Nebolo možné nadviazať spojenie so SMTP serverom.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dáta neboli prijaté'; 11 | $PHPMAILER_LANG['empty_message'] = 'Prázdne telo správy.'; 12 | $PHPMAILER_LANG['encoding'] = 'Neznáme kódovanie: '; 13 | $PHPMAILER_LANG['execute'] = 'Nedá sa vykonať: '; 14 | $PHPMAILER_LANG['file_access'] = 'Súbor nebol nájdený: '; 15 | $PHPMAILER_LANG['file_open'] = 'File Error: Súbor sa otvoriť pre čítanie: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Následujúca adresa From je nesprávna: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Nedá sa vytvoriť inštancia emailovej funkcie.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Neodoslané, emailová adresa je nesprávna: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' emailový klient nieje podporovaný.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Musíte zadať aspoň jednu emailovú adresu príjemcu.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Adresy príjemcov niesu správne '; 22 | $PHPMAILER_LANG['signing'] = 'Chyba prihlasovania: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() zlyhalo.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP chyba serveru: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nemožno nastaviť alebo resetovať premennú: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-fa.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Mohammad Hossein Mojtahedi 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'] = 'خطای File: امکان بازکردن فایل وجود ندارد: '; 17 | $PHPMAILER_LANG['from_failed'] = 'آدرس فرستنده اشتباه است: '; 18 | $PHPMAILER_LANG['instantiate'] = 'امکان معرفی تابع ایمیل وجود ندارد.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'آدرس ایمیل معتبر نیست: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer پشتیبانی نمی‌شود.'; 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 Server: '; 26 | $PHPMAILER_LANG['variable_set'] = 'امکان ارسال یا ارسال مجدد متغیر‌ها وجود ندارد: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-am.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'] = 'Ուղարկողի հետևյալ հասցեն սխալ է: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Հնարավոր չէ կանչել mail ֆունկցիան.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Հասցեն սխալ է: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' փոստային սերվերի հետ չի աշխատում.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Անհրաժեշտ է տրամադրել գոնե մեկ ստացողի e-mail հասցե.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP -ի սխալ: չի հաջողվել ուղարկել հետևյալ ստացողների հասցեներին: '; 22 | $PHPMAILER_LANG['signing'] = 'Ստորագրման սխալ: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP -ի connect() ֆունկցիան չի հաջողվել'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP սերվերի սխալ: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Չի հաջողվում ստեղծել կամ վերափոխել փոփոխականը: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Հավելվածը բացակայում է: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-be.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'] = 'Няправільны адрас адпраўніка: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Нельга прымяніць функцыю mail().'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Нельга даслаць паведамленне, няправільны email атрымальніка: '; 19 | $PHPMAILER_LANG['provide_address'] = 'Запоўніце, калі ласка, правільны email атрымальніка.'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' - паштовы сервер не падтрымліваецца.'; 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'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-bg.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'] = 'Следните адреси за подател са невалидни: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Не може да се инстанцира функцията mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Невалиден адрес: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' - пощенски сървър не се поддържа.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Трябва да предоставите поне един email адрес за получател.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: Следните адреси за Получател са невалидни: '; 22 | $PHPMAILER_LANG['signing'] = 'Грешка при подписване: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP провален connect().'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP сървърна грешка: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Не може да се установи или възстанови променлива: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Липсва разширение: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Error SMTP: No s’ha pogut autenticar.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Error SMTP: No es pot connectar al servidor SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Dades no acceptades.'; 11 | $PHPMAILER_LANG['empty_message'] = 'El cos del missatge està buit.'; 12 | $PHPMAILER_LANG['encoding'] = 'Codificació desconeguda: '; 13 | $PHPMAILER_LANG['execute'] = 'No es pot executar: '; 14 | $PHPMAILER_LANG['file_access'] = 'No es pot accedir a l’arxiu: '; 15 | $PHPMAILER_LANG['file_open'] = 'Error d’Arxiu: No es pot obrir l’arxiu: '; 16 | $PHPMAILER_LANG['from_failed'] = 'La(s) següent(s) adreces de remitent han fallat: '; 17 | $PHPMAILER_LANG['instantiate'] = 'No s’ha pogut crear una instància de la funció Mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Adreça d’email invalida: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer no està suportat'; 20 | $PHPMAILER_LANG['provide_address'] = 'S’ha de proveir almenys una adreça d’email com a destinatari.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Els següents destinataris han fallat: '; 22 | $PHPMAILER_LANG['signing'] = 'Error al signar: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ha fallat el SMTP Connect().'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'No s’ha pogut establir o restablir la variable: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /templates/backoffice/assets/sass/paper/_tables.scss: -------------------------------------------------------------------------------- 1 | .table{ 2 | thead, 3 | tbody, 4 | tfoot{ 5 | tr > th, 6 | tr > td{ 7 | border-top: 1px solid $table-line-color; 8 | } 9 | } 10 | > thead > tr > th{ 11 | border-bottom-width: 0; 12 | font-size: $font-size-h5; 13 | font-weight: $font-weight-light; 14 | } 15 | 16 | .radio, 17 | .checkbox{ 18 | margin-top: 0; 19 | margin-bottom: 22px; 20 | padding: 0; 21 | width: 15px; 22 | } 23 | > thead > tr > th, 24 | > tbody > tr > th, 25 | > tfoot > tr > th, 26 | > thead > tr > td, 27 | > tbody > tr > td, 28 | > tfoot > tr > td{ 29 | padding: 12px; 30 | vertical-align: middle; 31 | } 32 | 33 | .th-description{ 34 | max-width: 150px; 35 | } 36 | .td-price{ 37 | font-size: 26px; 38 | font-weight: $font-weight-light; 39 | margin-top: 5px; 40 | text-align: right; 41 | } 42 | .td-total{ 43 | font-weight: $font-weight-bold; 44 | font-size: $font-size-h5; 45 | padding-top: 20px; 46 | text-align: right; 47 | } 48 | 49 | .td-actions .btn{ 50 | 51 | &.btn-sm, 52 | &.btn-xs{ 53 | padding-left: 3px; 54 | padding-right: 3px; 55 | } 56 | } 57 | 58 | > tbody > tr{ 59 | position: relative; 60 | } 61 | } 62 | .table-striped{ 63 | tbody > tr:nth-of-type(2n+1) { 64 | background-color: #fff; 65 | } 66 | tbody > tr:nth-of-type(2n) { 67 | background-color: $pale-bg; 68 | } 69 | > thead > tr > th, 70 | > tbody > tr > th, 71 | > tfoot > tr > th, 72 | > thead > tr > td, 73 | > tbody > tr > td, 74 | > tfoot > tr > td{ 75 | padding: 15px 8px; 76 | } 77 | } -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-sl.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP napaka: Avtentikacija ni uspela.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP napaka: Ne morem vzpostaviti povezave s SMTP gostiteljem.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP napaka: Strežnik zavrača podatke.'; 11 | $PHPMAILER_LANG['empty_message'] = 'E-poštno sporočilo nima vsebine.'; 12 | $PHPMAILER_LANG['encoding'] = 'Nepoznan tip kodiranja: '; 13 | $PHPMAILER_LANG['execute'] = 'Operacija ni uspela: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nimam dostopa do datoteke: '; 15 | $PHPMAILER_LANG['file_open'] = 'Ne morem odpreti datoteke: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Neveljaven e-naslov pošiljatelja: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Ne morem inicializirati mail funkcije.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'E-poštno sporočilo ni bilo poslano. E-naslov je neveljaven: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer ni podprt.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Prosim vnesite vsaj enega naslovnika.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP napaka: Sledeči naslovniki so neveljavni: '; 22 | $PHPMAILER_LANG['signing'] = 'Napaka pri podpisovanju: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ne morem vzpostaviti povezave s SMTP strežnikom.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Napaka SMTP strežnika: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Ne morem nastaviti oz. ponastaviti spremenljivke: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Error SMTP: Imposible autentificar.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Error SMTP: Imposible conectar al servidor SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Datos no aceptados.'; 11 | $PHPMAILER_LANG['empty_message'] = 'El cuerpo del mensaje está vacío'; 12 | $PHPMAILER_LANG['encoding'] = 'Codificación desconocida: '; 13 | $PHPMAILER_LANG['execute'] = 'Imposible ejecutar: '; 14 | $PHPMAILER_LANG['file_access'] = 'Imposible acceder al archivo: '; 15 | $PHPMAILER_LANG['file_open'] = 'Error de Archivo: Imposible abrir el archivo: '; 16 | $PHPMAILER_LANG['from_failed'] = 'La(s) siguiente(s) direcciones de remitente fallaron: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Imposible crear una instancia de la función Mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Imposible enviar: dirección de email inválido: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer no está soportado.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Debe proporcionar al menos una dirección de email de destino.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Los siguientes destinos fallaron: '; 22 | $PHPMAILER_LANG['signing'] = 'Error al firmar: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falló.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'No se pudo configurar la variable: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Extensión faltante: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-ba.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela prijava.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Nije moguće spojiti se sa SMTP serverom.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; 12 | $PHPMAILER_LANG['encoding'] = 'Nepoznata kriptografija: '; 13 | $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; 15 | $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; 16 | $PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje sa navedenih e-mail adresa nije uspjelo: '; 17 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedene e-mail adrese nije uspjelo: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Definišite barem jednu adresu primaoca.'; 22 | $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP server nije uspjelo.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP greška: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nije moguće postaviti varijablu ili je vratiti nazad: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Nedostaje ekstenzija: '; -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Viga: Autoriseerimise viga.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Viga: Ei õnnestunud luua ühendust SMTP serveriga.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Viga: Vigased andmed.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Tühi kirja sisu'; 13 | $PHPMAILER_LANG["encoding"] = 'Tundmatu kodeering: '; 14 | $PHPMAILER_LANG['execute'] = 'Tegevus ebaõnnestus: '; 15 | $PHPMAILER_LANG['file_access'] = 'Pole piisavalt õiguseid järgneva faili avamiseks: '; 16 | $PHPMAILER_LANG['file_open'] = 'Faili Viga: Faili avamine ebaõnnestus: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Järgnev saatja e-posti aadress on vigane: '; 18 | $PHPMAILER_LANG['instantiate'] = 'mail funktiooni käivitamine ebaõnnestus.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Saatmine peatatud, e-posti address vigane: '; 20 | $PHPMAILER_LANG['provide_address'] = 'Te peate määrama vähemalt ühe saaja e-posti aadressi.'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' maileri tugi puudub.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Viga: Järgnevate saajate e-posti aadressid on vigased: '; 23 | $PHPMAILER_LANG["signing"] = 'Viga allkirjastamisel: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() ebaõnnestus.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP serveri viga: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Ei õnnestunud määrata või lähtestada muutujat: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Nõutud laiendus on puudu: '; 28 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-gl.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Erro SMTP: Non puido ser autentificado.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Erro SMTP: Non puido conectar co servidor SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro SMTP: Datos non aceptados.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Corpo da mensaxe vacía'; 12 | $PHPMAILER_LANG['encoding'] = 'Codificación descoñecida: '; 13 | $PHPMAILER_LANG['execute'] = 'Non puido ser executado: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nob puido acceder ó arquivo: '; 15 | $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: No puido abrir o arquivo: '; 16 | $PHPMAILER_LANG['from_failed'] = 'A(s) seguinte(s) dirección(s) de remitente(s) deron erro: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Non puido crear unha instancia da función Mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Non puido envia-lo correo: dirección de email inválida: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer non está soportado.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Debe engadir polo menos unha dirección de email coma destino.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Erro SMTP: Os seguintes destinos fallaron: '; 22 | $PHPMAILER_LANG['signing'] = 'Erro ó firmar: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallou.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Erro do servidor SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Non puidemos axustar ou reaxustar a variábel: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Eroare SMTP: Autentificarea a eșuat.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Eroare SMTP: Conectarea la serverul SMTP a eșuat.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Eroare SMTP: Datele nu au fost acceptate.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Mesajul este gol.'; 12 | $PHPMAILER_LANG['encoding'] = 'Encodare necunoscută: '; 13 | $PHPMAILER_LANG['execute'] = 'Nu se poate executa următoarea comandă: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nu se poate accesa următorul fișier: '; 15 | $PHPMAILER_LANG['file_open'] = 'Eroare fișier: Nu se poate deschide următorul fișier: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Următoarele adrese From au dat eroare: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Funcția mail nu a putut fi inițializată.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Adresa de email nu este validă: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nu este suportat.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Trebuie să adăugați cel puțin o adresă de email.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Eroare SMTP: Următoarele adrese de email au eșuat: '; 22 | $PHPMAILER_LANG['signing'] = 'A aparut o problemă la semnarea emailului. '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Conectarea la serverul SMTP a eșuat.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Eroare server SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nu se poate seta/reseta variabila. '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Lipsește extensia: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela autentikacija.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Ne mogu se spojiti na SMTP poslužitelj.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; 12 | $PHPMAILER_LANG['encoding'] = 'Nepoznati encoding: '; 13 | $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; 15 | $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; 16 | $PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje s navedenih e-mail adresa nije uspjelo: '; 17 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedenih e-mail adresa nije uspjelo: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Definirajte barem jednu adresu primatelja.'; 22 | $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP poslužitelj nije uspjelo.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Greška SMTP poslužitelja: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Ne mogu postaviti varijablu niti ju vratiti nazad: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Nedostaje proširenje: '; 27 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-rs.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'] = 'SMTP грешка: слање са следећих адреса није успело: '; 17 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: слање на следеће адресе није успело: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Није могуће покренути mail функцију.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Порука није послата због неисправне адресе: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' мејлер није подржан.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Потребно је задати најмање једну адресу.'; 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 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Ralat SMTP: Tidak dapat pengesahan.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Ralat SMTP: Tidak dapat menghubungi hos pelayan SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Ralat SMTP: Data tidak diterima oleh pelayan.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Tiada isi untuk mesej'; 12 | $PHPMAILER_LANG['encoding'] = 'Pengekodan tidak diketahui: '; 13 | $PHPMAILER_LANG['execute'] = 'Tidak dapat melaksanakan: '; 14 | $PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses fail: '; 15 | $PHPMAILER_LANG['file_open'] = 'Ralat Fail: Tidak dapat membuka fail: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Berikut merupakan ralat dari alamat e-mel: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Tidak dapat memberi contoh fungsi e-mel.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Alamat emel tidak sah: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' jenis penghantar emel tidak disokong.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Anda perlu menyediakan sekurang-kurangnya satu alamat e-mel penerima.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Ralat SMTP: Penerima e-mel berikut telah gagal: '; 22 | $PHPMAILER_LANG['signing'] = 'Ralat pada tanda tangan: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() telah gagal.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Ralat pada pelayan SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Tidak boleh menetapkan atau menetapkan semula pembolehubah: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /templates/exchange/assets/fonts/flaticon.css: -------------------------------------------------------------------------------- 1 | /* 2 | Flaticon icon font: Flaticon 3 | Creation date: 22/09/2018 07:28 4 | */ 5 | 6 | @font-face { 7 | font-family: "Flaticon"; 8 | src: url("Flaticon.eot"); 9 | src: url("Flaticon.eot?") format("embedded-opentype"), 10 | url("Flaticon.woff") format("woff"), 11 | url("Flaticon.ttf") format("truetype"), 12 | url("Flaticon.svg") format("svg"); 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | 17 | @media screen and (-webkit-min-device-pixel-ratio:0) { 18 | @font-face { 19 | font-family: "Flaticon"; 20 | src: url("Flaticon.svg") format("svg"); 21 | } 22 | } 23 | 24 | [class^="flaticon-"]:before, [class*=" flaticon-"]:before, 25 | [class^="flaticon-"]:after, [class*=" flaticon-"]:after { 26 | font-family: Flaticon; 27 | font-style: normal; 28 | } 29 | 30 | .flaticon-money:before { content: "\f100"; } 31 | .flaticon-paper-plane:before { content: "\f101"; } 32 | .flaticon-verified:before { content: "\f102"; } 33 | .flaticon-export:before { content: "\f103"; } 34 | .flaticon-change:before { content: "\f104"; } 35 | .flaticon-money-1:before { content: "\f105"; } 36 | .flaticon-mining:before { content: "\f106"; } 37 | .flaticon-blockchain:before { content: "\f107"; } 38 | .flaticon-bitcoin:before { content: "\f108"; } 39 | .flaticon-bitcoin-1:before { content: "\f109"; } 40 | .flaticon-wallet-1:before { content: "\f10a"; } 41 | .flaticon-bitcoin-2:before { content: "\f10b"; } 42 | .flaticon-blockchain-1:before { content: "\f10c"; } 43 | .flaticon-wallet:before { content: "\f10d"; } 44 | .flaticon-notebook:before { content: "\f10e"; } 45 | .flaticon-withdrawing-money-from-atm:before { content: "\f10f"; } 46 | .flaticon-bars:before { content: "\f110"; } 47 | .flaticon-right-arrow:before { content: "\f111"; } 48 | .flaticon-left-arrow:before { content: "\f112"; } -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Foster Snowhill 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Ошибка SMTP: ошибка авторизации.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Ошибка SMTP: не удается подключиться к серверу SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Ошибка SMTP: данные не приняты.'; 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['provide_address'] = 'Пожалуйста, введите хотя бы один адрес e-mail получателя.'; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' — почтовый сервер не поддерживается.'; 20 | $PHPMAILER_LANG['recipients_failed'] = 'Ошибка SMTP: отправка по следующим адресам получателей не удалась: '; 21 | $PHPMAILER_LANG['empty_message'] = 'Пустое сообщение'; 22 | $PHPMAILER_LANG['invalid_address'] = 'Не отослано, неправильный формат email адреса: '; 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'] = 'Расширение отсутствует: '; 28 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-ka.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['encoding'] = 'კოდირების უცნობი ტიპი: '; 12 | $PHPMAILER_LANG['execute'] = 'შეუძლებელია შემდეგი ბრძანების შესრულება: '; 13 | $PHPMAILER_LANG['file_access'] = 'შეუძლებელია წვდომა ფაილთან: '; 14 | $PHPMAILER_LANG['file_open'] = 'ფაილური სისტემის შეცდომა: არ იხსნება ფაილი: '; 15 | $PHPMAILER_LANG['from_failed'] = 'გამგზავნის არასწორი მისამართი: '; 16 | $PHPMAILER_LANG['instantiate'] = 'mail ფუნქციის გაშვება ვერ ხერხდება.'; 17 | $PHPMAILER_LANG['provide_address'] = 'გთხოვთ მიუთითოთ ერთი ადრესატის e-mail მისამართი მაინც.'; 18 | $PHPMAILER_LANG['mailer_not_supported'] = ' - საფოსტო სერვერის მხარდაჭერა არ არის.'; 19 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP შეცდომა: შემდეგ მისამართებზე გაგზავნა ვერ მოხერხდა: '; 20 | $PHPMAILER_LANG['empty_message'] = 'შეტყობინება ცარიელია'; 21 | $PHPMAILER_LANG['invalid_address'] = 'არ გაიგზავნა, e-mail მისამართის არასწორი ფორმატი: '; 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 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-uk.php: -------------------------------------------------------------------------------- 1 | 6 | * @fixed by Boris Yurchenko 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Помилка SMTP: помилка авторизації.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Помилка SMTP: не вдається під\'єднатися до серверу SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Помилка SMTP: дані не прийняті.'; 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['provide_address'] = 'Будь-ласка, введіть хоча б одну адресу e-mail отримувача.'; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' - поштовий сервер не підтримується.'; 20 | $PHPMAILER_LANG['recipients_failed'] = 'Помилка SMTP: відправлення наступним отримувачам не вдалося: '; 21 | $PHPMAILER_LANG['empty_message'] = 'Пусте тіло повідомлення'; 22 | $PHPMAILER_LANG['invalid_address'] = 'Не відправлено, невірний формат адреси e-mail: '; 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 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-id.php: -------------------------------------------------------------------------------- 1 | 6 | * @author @januridp 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Kesalahan SMTP: Tidak dapat mengotentikasi.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Kesalahan SMTP: Tidak dapat terhubung ke host SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Kesalahan SMTP: Data tidak diterima peladen.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Isi pesan kosong'; 13 | $PHPMAILER_LANG['encoding'] = 'Pengkodean karakter tidak dikenali: '; 14 | $PHPMAILER_LANG['execute'] = 'Tidak dapat menjalankan proses : '; 15 | $PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses berkas : '; 16 | $PHPMAILER_LANG['file_open'] = 'Kesalahan File: Berkas tidak bisa dibuka : '; 17 | $PHPMAILER_LANG['from_failed'] = 'Alamat pengirim berikut mengakibatkan kesalahan : '; 18 | $PHPMAILER_LANG['instantiate'] = 'Tidak dapat menginisialisasi fungsi surel'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Gagal terkirim, alamat surel tidak benar : '; 20 | $PHPMAILER_LANG['provide_address'] = 'Harus disediakan minimal satu alamat tujuan'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = 'Pengirim tidak didukung'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Kesalahan SMTP: Alamat tujuan berikut menghasilkan kesalahan : '; 23 | $PHPMAILER_LANG['signing'] = 'Kesalahan dalam tanda tangan : '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() gagal.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Kesalahan pada pelayan SMTP : '; 26 | $PHPMAILER_LANG['variable_set'] = 'Tidak berhasil mengatur atau mengatur ulang variable : '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Ekstensi hilang: '; 28 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Stefano Sabatini 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Impossibile autenticarsi.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Impossibile connettersi all\'host SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dati non accettati dal server.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Il corpo del messaggio è vuoto'; 13 | $PHPMAILER_LANG['encoding'] = 'Codifica dei caratteri sconosciuta: '; 14 | $PHPMAILER_LANG['execute'] = 'Impossibile eseguire l\'operazione: '; 15 | $PHPMAILER_LANG['file_access'] = 'Impossibile accedere al file: '; 16 | $PHPMAILER_LANG['file_open'] = 'File Error: Impossibile aprire il file: '; 17 | $PHPMAILER_LANG['from_failed'] = 'I seguenti indirizzi mittenti hanno generato errore: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Impossibile istanziare la funzione mail'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Impossibile inviare, l\'indirizzo email non è valido: '; 20 | $PHPMAILER_LANG['provide_address'] = 'Deve essere fornito almeno un indirizzo ricevente'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = 'Mailer non supportato'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: I seguenti indirizzi destinatari hanno generato un errore: '; 23 | $PHPMAILER_LANG['signing'] = 'Errore nella firma: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallita.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Errore del server SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Impossibile impostare o resettare la variabile: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-pt.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Erro do SMTP: Não foi possível realizar a autenticação.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Erro do SMTP: Não foi possível realizar ligação com o servidor SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro do SMTP: Os dados foram rejeitados.'; 11 | $PHPMAILER_LANG['empty_message'] = 'A mensagem no e-mail está vazia.'; 12 | $PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; 13 | $PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; 14 | $PHPMAILER_LANG['file_access'] = 'Não foi possível aceder o ficheiro: '; 15 | $PHPMAILER_LANG['file_open'] = 'Abertura do ficheiro: Não foi possível abrir o ficheiro: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Ocorreram falhas nos endereços dos seguintes remententes: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Não foi possível iniciar uma instância da função mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Não foi enviado nenhum e-mail para o endereço de e-mail inválido: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Tem de fornecer pelo menos um endereço como destinatário do e-mail.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Erro do SMTP: O endereço do seguinte destinatário falhou: '; 22 | $PHPMAILER_LANG['signing'] = 'Erro ao assinar: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Extensão em falta: '; 27 | -------------------------------------------------------------------------------- /configs/coins.txt: -------------------------------------------------------------------------------- 1 | BTC 2 | ETH 3 | XRP 4 | LTC 5 | BCH 6 | EOS 7 | BNB 8 | BSV 9 | USDT 10 | XLM 11 | TRX 12 | ADA 13 | XMR 14 | DASH 15 | IOTA 16 | ATOM 17 | ETC 18 | XTZ 19 | NEO 20 | XEM 21 | MKR 22 | ONT 23 | ZEC 24 | BTG 25 | BAT 26 | VET 27 | LINK 28 | DOGE 29 | USDC 30 | QTUM 31 | BTT 32 | OMG 33 | DCR 34 | HOT 35 | TUSD 36 | WAVES 37 | RVN 38 | LSK 39 | BCD 40 | NANO 41 | ZIL 42 | REP 43 | ZRX 44 | ICX 45 | KMD 46 | DGB 47 | PAX 48 | XVG 49 | IOST 50 | AE 51 | DENT 52 | ENJ 53 | STEEM 54 | ARDR 55 | STRAT 56 | HC 57 | SNT 58 | ELF 59 | WTC 60 | GNT 61 | MAID 62 | DAI 63 | WAX 64 | XZC 65 | ARK 66 | DGD 67 | ZEN 68 | FCT 69 | AION 70 | LOOM 71 | MANA 72 | LRC 73 | NEXO 74 | R 75 | PPT 76 | RDD 77 | POWR 78 | IGNIS 79 | ENG 80 | BNT 81 | KNC 82 | POLY 83 | FUN 84 | BRD 85 | STORJ 86 | IOTX 87 | PIVX 88 | EURS 89 | NXT 90 | RLC 91 | MFT 92 | GRS 93 | GAS 94 | CMT 95 | PART 96 | PAY 97 | CVC 98 | QRL 99 | CND 100 | DGTX 101 | GNO 102 | MITH 103 | VTC 104 | GBYTE 105 | NOAH 106 | MTL 107 | ANT 108 | GTO 109 | TEL 110 | GUSD 111 | STORM 112 | KIN 113 | GO 114 | FET 115 | EVX 116 | RIPIO 117 | RCN 118 | AEON 119 | SLS 120 | NAV 121 | DCN 122 | PMA 123 | SRN 124 | BQX 125 | FLO 126 | ADX 127 | VEE 128 | EDG 129 | XDN 130 | SMART 131 | EMC 132 | ZCL 133 | NMR 134 | DNT 135 | SNGLS 136 | KEY 137 | SNM 138 | ARN 139 | DLT 140 | RFR 141 | ABYSS 142 | SBD 143 | LBC 144 | VIB 145 | NLG 146 | 1ST 147 | BCPT 148 | GAME 149 | AST 150 | MLN 151 | MER 152 | NIM 153 | ADT 154 | OK 155 | NGC 156 | UKG 157 | RADS 158 | EBST 159 | POT 160 | XEL 161 | XAUR 162 | UP 163 | RVR 164 | HMQ 165 | TIME 166 | MUE 167 | BKX 168 | DYN 169 | MYST 170 | EXP 171 | BSD 172 | AMP 173 | TRST 174 | GUP 175 | ZAP 176 | SWT 177 | TX 178 | IOP 179 | PTOY 180 | STX 181 | MEME 182 | SYNX 183 | GOLOS 184 | NBT 185 | BLOCKTIX 186 | PROC 187 | SKIN 188 | TKN 189 | LMC 190 | BETR 191 | GBG 192 | ONG 193 | HT 194 | RDN 195 | POE 196 | BNBMAINNET 197 | -------------------------------------------------------------------------------- /includes/frontend/navbar.php: -------------------------------------------------------------------------------- 1 | 5 |
6 |
7 |
8 |
9 | 12 | 15 |
16 |
17 | 26 |
27 | 28 |
29 | 40 |
41 | 42 |
43 |
44 |
45 | -------------------------------------------------------------------------------- /modules/index/controller/error_log: -------------------------------------------------------------------------------- 1 | [27-May-2019 20:51:02 America/New_York] PHP Warning: require_once(lib/controllers.php): failed to open stream: No such file or directory in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/controller/index.php on line 5 2 | [27-May-2019 20:51:02 America/New_York] PHP Fatal error: require_once(): Failed opening required 'lib/controllers.php' (include_path='.:/opt/alt/php73/usr/share/pear') in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/controller/index.php on line 5 3 | [27-May-2019 21:02:08 America/New_York] PHP Warning: require_once(lib/controllers.php): failed to open stream: No such file or directory in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/controller/index.php on line 5 4 | [27-May-2019 21:02:08 America/New_York] PHP Fatal error: require_once(): Failed opening required 'lib/controllers.php' (include_path='.:/opt/alt/php73/usr/share/pear') in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/controller/index.php on line 5 5 | [27-May-2019 21:02:55 America/New_York] PHP Warning: require_once(lib/controllers.php): failed to open stream: No such file or directory in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/controller/index.php on line 5 6 | [27-May-2019 21:02:55 America/New_York] PHP Fatal error: require_once(): Failed opening required 'lib/controllers.php' (include_path='.:/opt/alt/php73/usr/share/pear') in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/controller/index.php on line 5 7 | [22-Jun-2019 08:01:49 America/New_York] PHP Warning: require_once(lib/controllers.php): failed to open stream: No such file or directory in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/controller/index.php on line 5 8 | [22-Jun-2019 08:01:49 America/New_York] PHP Fatal error: require_once(): Failed opening required 'lib/controllers.php' (include_path='.:/opt/alt/php73/usr/share/pear') in /home/gmtemhic/demo.cryptoexchange-software.us/modules/index/controller/index.php on line 5 9 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/InflateStream.php: -------------------------------------------------------------------------------- 1 | read(10); 25 | $filenameHeaderLength = $this->getLengthOfPossibleFilenameHeader($stream, $header); 26 | // Skip the header, that is 10 + length of filename + 1 (nil) bytes 27 | $stream = new LimitStream($stream, -1, 10 + $filenameHeaderLength); 28 | $resource = StreamWrapper::getResource($stream); 29 | stream_filter_append($resource, 'zlib.inflate', STREAM_FILTER_READ); 30 | $this->stream = new Stream($resource); 31 | } 32 | 33 | /** 34 | * @param StreamInterface $stream 35 | * @param $header 36 | * @return int 37 | */ 38 | private function getLengthOfPossibleFilenameHeader(StreamInterface $stream, $header) 39 | { 40 | $filename_header_length = 0; 41 | 42 | if (substr(bin2hex($header), 6, 2) === '08') { 43 | // we have a filename, read until nil 44 | $filename_header_length = 1; 45 | while ($stream->read(1) !== chr(0)) { 46 | $filename_header_length++; 47 | } 48 | } 49 | 50 | return $filename_header_length; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /templates/backoffice/assets/sass/paper/mixins/_buttons.scss: -------------------------------------------------------------------------------- 1 | // Mixin for generating new styles 2 | @mixin btn-styles($btn-color, $btn-states-color) { 3 | border-color: $btn-color; 4 | color: $btn-color; 5 | 6 | &:hover, 7 | &:focus, 8 | &:active, 9 | &.active, 10 | .open > &.dropdown-toggle { 11 | background-color: $btn-color; 12 | color: $fill-font-color; 13 | border-color: $btn-color; 14 | .caret{ 15 | border-top-color: $fill-font-color; 16 | } 17 | } 18 | 19 | &.disabled, 20 | &:disabled, 21 | &[disabled], 22 | fieldset[disabled] & { 23 | &, 24 | &:hover, 25 | &:focus, 26 | &.focus, 27 | &:active, 28 | &.active { 29 | background-color: $transparent-bg; 30 | border-color: $btn-color; 31 | } 32 | } 33 | 34 | 35 | &.btn-fill { 36 | color: $white-color; 37 | background-color: $btn-color; 38 | @include opacity(1); 39 | 40 | &:hover, 41 | &:focus, 42 | &:active, 43 | &.active, 44 | .open > &.dropdown-toggle{ 45 | background-color: $btn-states-color; 46 | color: $white-color; 47 | border-color: $btn-states-color; 48 | } 49 | 50 | .caret{ 51 | border-top-color: $white-color; 52 | } 53 | } 54 | 55 | &.btn-simple { 56 | &:hover, 57 | &:focus, 58 | &:active, 59 | &.active, 60 | .open > &.dropdown-toggle{ 61 | background-color: $transparent-bg; 62 | color: $btn-states-color; 63 | } 64 | 65 | .caret{ 66 | border-top-color: $white-color; 67 | } 68 | } 69 | 70 | .caret{ 71 | border-top-color: $btn-color; 72 | } 73 | } 74 | 75 | 76 | @mixin btn-size($padding-vertical, $padding-horizontal, $font-size, $border, $line-height){ 77 | font-size: $font-size; 78 | border-radius: $border; 79 | padding: $padding-vertical $padding-horizontal; 80 | 81 | &.btn-simple{ 82 | padding: $padding-vertical + 2 $padding-horizontal; 83 | } 84 | 85 | } -------------------------------------------------------------------------------- /lib/phpmail/language/phpmailer.lang-pt_br.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Lucas Guimarães 7 | * @author Phelipe Alves 8 | * @author Fabio Beneditto 9 | */ 10 | 11 | $PHPMAILER_LANG['authenticate'] = 'Erro de SMTP: Não foi possível autenticar.'; 12 | $PHPMAILER_LANG['connect_host'] = 'Erro de SMTP: Não foi possível conectar ao servidor SMTP.'; 13 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro de SMTP: Dados rejeitados.'; 14 | $PHPMAILER_LANG['empty_message'] = 'Mensagem vazia'; 15 | $PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; 16 | $PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; 17 | $PHPMAILER_LANG['file_access'] = 'Não foi possível acessar o arquivo: '; 18 | $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: Não foi possível abrir o arquivo: '; 19 | $PHPMAILER_LANG['from_failed'] = 'Os seguintes remetentes falharam: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Não foi possível instanciar a função mail.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'Endereço de e-mail inválido: '; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; 23 | $PHPMAILER_LANG['provide_address'] = 'Você deve informar pelo menos um destinatário.'; 24 | $PHPMAILER_LANG['recipients_failed'] = 'Erro de SMTP: Os seguintes destinatários falharam: '; 25 | $PHPMAILER_LANG['signing'] = 'Erro de Assinatura: '; 26 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; 27 | $PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; 28 | $PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; 29 | $PHPMAILER_LANG['extension_missing'] = 'Extensão ausente: '; 30 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | pageIndex("page"); 45 | /* 46 | )/ /\__/\ \__O (__ 47 | |/ (--/\--) \__/ 48 | / _)( )(_ 49 | `---''---` 50 | */ 51 | 52 | ?> -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Handler/Proxy.php: -------------------------------------------------------------------------------- 1 | __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php', 11 | 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php', 12 | '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php', 13 | ); 14 | 15 | public static $prefixLengthsPsr4 = array ( 16 | 'P' => 17 | array ( 18 | 'Psr\\Http\\Message\\' => 17, 19 | ), 20 | 'G' => 21 | array ( 22 | 'GuzzleHttp\\Psr7\\' => 16, 23 | 'GuzzleHttp\\Promise\\' => 19, 24 | 'GuzzleHttp\\' => 11, 25 | ), 26 | 'C' => 27 | array ( 28 | 'Curl\\' => 5, 29 | ), 30 | ); 31 | 32 | public static $prefixDirsPsr4 = array ( 33 | 'Psr\\Http\\Message\\' => 34 | array ( 35 | 0 => __DIR__ . '/..' . '/psr/http-message/src', 36 | ), 37 | 'GuzzleHttp\\Psr7\\' => 38 | array ( 39 | 0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src', 40 | ), 41 | 'GuzzleHttp\\Promise\\' => 42 | array ( 43 | 0 => __DIR__ . '/..' . '/guzzlehttp/promises/src', 44 | ), 45 | 'GuzzleHttp\\' => 46 | array ( 47 | 0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src', 48 | ), 49 | 'Curl\\' => 50 | array ( 51 | 0 => __DIR__ . '/..' . '/php-curl-class/php-curl-class/src/Curl', 52 | ), 53 | ); 54 | 55 | public static function getInitializer(ClassLoader $loader) 56 | { 57 | return \Closure::bind(function () use ($loader) { 58 | $loader->prefixLengthsPsr4 = ComposerStaticInit7af8bdc4d5dc968445bca55397b71944::$prefixLengthsPsr4; 59 | $loader->prefixDirsPsr4 = ComposerStaticInit7af8bdc4d5dc968445bca55397b71944::$prefixDirsPsr4; 60 | 61 | }, null, ClassLoader::class); 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/TaskQueue.php: -------------------------------------------------------------------------------- 1 | run(); 12 | */ 13 | class TaskQueue implements TaskQueueInterface 14 | { 15 | private $enableShutdown = true; 16 | private $queue = []; 17 | 18 | public function __construct($withShutdown = true) 19 | { 20 | if ($withShutdown) { 21 | register_shutdown_function(function () { 22 | if ($this->enableShutdown) { 23 | // Only run the tasks if an E_ERROR didn't occur. 24 | $err = error_get_last(); 25 | if (!$err || ($err['type'] ^ E_ERROR)) { 26 | $this->run(); 27 | } 28 | } 29 | }); 30 | } 31 | } 32 | 33 | public function isEmpty() 34 | { 35 | return !$this->queue; 36 | } 37 | 38 | public function add(callable $task) 39 | { 40 | $this->queue[] = $task; 41 | } 42 | 43 | public function run() 44 | { 45 | /** @var callable $task */ 46 | while ($task = array_shift($this->queue)) { 47 | $task(); 48 | } 49 | } 50 | 51 | /** 52 | * The task queue will be run and exhausted by default when the process 53 | * exits IFF the exit is not the result of a PHP E_ERROR error. 54 | * 55 | * You can disable running the automatic shutdown of the queue by calling 56 | * this function. If you disable the task queue shutdown process, then you 57 | * MUST either run the task queue (as a result of running your event loop 58 | * or manually using the run() method) or wait on each outstanding promise. 59 | * 60 | * Note: This shutdown will occur before any destructors are triggered. 61 | */ 62 | public function disableShutdown() 63 | { 64 | $this->enableShutdown = false; 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php: -------------------------------------------------------------------------------- 1 | sessionKey = $sessionKey; 26 | $this->storeSessionCookies = $storeSessionCookies; 27 | $this->load(); 28 | } 29 | 30 | /** 31 | * Saves cookies to session when shutting down 32 | */ 33 | public function __destruct() 34 | { 35 | $this->save(); 36 | } 37 | 38 | /** 39 | * Save cookies to the client session 40 | */ 41 | public function save() 42 | { 43 | $json = []; 44 | foreach ($this as $cookie) { 45 | /** @var SetCookie $cookie */ 46 | if (CookieJar::shouldPersist($cookie, $this->storeSessionCookies)) { 47 | $json[] = $cookie->toArray(); 48 | } 49 | } 50 | 51 | $_SESSION[$this->sessionKey] = json_encode($json); 52 | } 53 | 54 | /** 55 | * Load the contents of the client session into the data array 56 | */ 57 | protected function load() 58 | { 59 | if (!isset($_SESSION[$this->sessionKey])) { 60 | return; 61 | } 62 | $data = json_decode($_SESSION[$this->sessionKey], true); 63 | if (is_array($data)) { 64 | foreach ($data as $cookie) { 65 | $this->setCookie(new SetCookie($cookie)); 66 | } 67 | } elseif (strlen($data)) { 68 | throw new \RuntimeException("Invalid cookie data"); 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /modules/account/view/account.tpl.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |

My account

6 |

Home | Account

7 |
8 |
9 |
10 | 11 | 12 | 13 |
14 |
15 |
16 |
17 |
18 |
19 |

Operation History

20 |
21 |
22 |
23 | 24 |
25 |
26 | 27 |
28 |
29 |
30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | listUserTransactions(); ?> 43 | 44 |
PairDateAmountHashState
45 | 46 | 47 |
48 |
49 |
50 |
51 |
52 | 53 |
54 | 55 | 56 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/FulfilledPromise.php: -------------------------------------------------------------------------------- 1 | value = $value; 22 | } 23 | 24 | public function then( 25 | callable $onFulfilled = null, 26 | callable $onRejected = null 27 | ) { 28 | // Return itself if there is no onFulfilled function. 29 | if (!$onFulfilled) { 30 | return $this; 31 | } 32 | 33 | $queue = queue(); 34 | $p = new Promise([$queue, 'run']); 35 | $value = $this->value; 36 | $queue->add(static function () use ($p, $value, $onFulfilled) { 37 | if ($p->getState() === self::PENDING) { 38 | try { 39 | $p->resolve($onFulfilled($value)); 40 | } catch (\Throwable $e) { 41 | $p->reject($e); 42 | } catch (\Exception $e) { 43 | $p->reject($e); 44 | } 45 | } 46 | }); 47 | 48 | return $p; 49 | } 50 | 51 | public function otherwise(callable $onRejected) 52 | { 53 | return $this->then(null, $onRejected); 54 | } 55 | 56 | public function wait($unwrap = true, $defaultDelivery = null) 57 | { 58 | return $unwrap ? $this->value : null; 59 | } 60 | 61 | public function getState() 62 | { 63 | return self::FULFILLED; 64 | } 65 | 66 | public function resolve($value) 67 | { 68 | if ($value !== $this->value) { 69 | throw new \LogicException("Cannot resolve a fulfilled promise"); 70 | } 71 | } 72 | 73 | public function reject($reason) 74 | { 75 | throw new \LogicException("Cannot reject a fulfilled promise"); 76 | } 77 | 78 | public function cancel() 79 | { 80 | // pass 81 | } 82 | } 83 | --------------------------------------------------------------------------------