forked from bitcoin-dot-org/Bitcoin.org
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwallets.php
More file actions
80 lines (63 loc) · 2.52 KB
/
wallets.php
File metadata and controls
80 lines (63 loc) · 2.52 KB
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
<?php
/*
* Plugin Name: Bitcoin and Altcoin Wallets
* Description: Turn your blog into a bank: Let your users deposit, withdraw, and transfer bitcoins and altcoins on your site.
* Version: 3.6.7
* Plugin URI: https://www.dashed-slug.net/bitcoin-altcoin-wallets-wordpress-plugin
* Author: dashed-slug <info@dashed-slug.net>
* Author URI: http://dashed-slug.net
* Text Domain: wallets
* Domain Path: /languages/
* License: GPLv2 or later
*
* @package wallets
* @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 dashed-slug <info@dashed-slug.net>
*/
// 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/wallets-core.php';
require_once 'includes/admin-notices.php';
require_once 'includes/php-api.php';
require_once 'includes/json-api.php';
require_once 'includes/sidebar-widgets.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-menu.php';
require_once 'includes/admin-user.php';
require_once 'includes/adapters-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/menu-item.php';
require_once 'includes/shortcodes.php';
// Instantiate the plugin class
Dashed_Slug_Wallets::get_instance();