forked from dashed-slug/wallets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wallets.php
85 lines (72 loc) · 2.91 KB
/
wallets.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/*
* Plugin Name: Bitcoin and Altcoin Wallets
* Description: Offer your users custodial cryptocurrency wallets, backed by full nodes that you control.
* Version: 5.0.15
* Plugin URI: https://www.dashed-slug.net/bitcoin-altcoin-wallets-wordpress-plugin
* Requires at least: 4.0
* Requires PHP: 5.6
* Author: dashed-slug <[email protected]>
* Author URI: http://dashed-slug.net
* Text Domain: wallets
* Domain Path: /languages
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*
* @package wallets
* @author Alexandros Georgiou
* @copyright 2021 Alexandros Georgiou
* @license GPL-2.0-or-later
* @since 1.0.0
*/
/*
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Copyright 2021 Alexandros Georgiou
*/
// don't load directly
defined( 'ABSPATH' ) || die( -1 );
define( 'DSWALLETS_FILE', __FILE__ );
define( 'DSWALLETS_PATH', dirname( __FILE__ ) );
if ( ! function_exists( 'is_plugin_active_for_network' ) ) {
require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
}
if ( ! defined( 'CURLPROXY_SOCKS5_HOSTNAME' ) ) {
define( 'CURLPROXY_SOCKS5_HOSTNAME', 7 );
}
require_once 'includes/admin-notices.php';
require_once 'includes/wallets-core.php';
require_once 'includes/php-api.php';
require_once 'includes/json-api.php';
require_once 'includes/coin-adapter.php';
require_once 'includes/coin-adapter-rpc.php';
require_once 'includes/coin-adapter-json.php';
require_once 'includes/admin-dashboard.php';
require_once 'includes/admin-menu.php';
require_once 'includes/admin-user.php';
require_once 'includes/adapters-list.php';
require_once 'includes/addresses-list.php';
require_once 'includes/balances-list.php';
require_once 'includes/transactions.php';
require_once 'includes/rates.php';
require_once 'includes/cold-storage.php';
require_once 'includes/caps.php';
require_once 'includes/confirmations.php';
require_once 'includes/cron.php';
require_once 'includes/notifications.php';
require_once 'includes/frontend-settings.php';
require_once 'includes/gdpr.php';
require_once 'includes/templates.php';
require_once 'includes/sidebar-widgets.php';
require_once 'includes/customizer.php';
require_once 'includes/menu-item.php';
require_once 'includes/shortcodes.php';