-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtop-10.php
More file actions
242 lines (215 loc) · 7.01 KB
/
Copy pathtop-10.php
File metadata and controls
242 lines (215 loc) · 7.01 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<?php
/**
* Top 10.
*
* Count daily and total visits per post and display the most popular posts based on the number of views.
*
* @package Top_Ten
* @author Ajay D'Souza
* @license GPL-2.0+
* @link https://webberzone.com
* @copyright 2008-2026 Ajay D'Souza
*
* @wordpress-plugin
* Plugin Name: WebberZone Top 10
* Plugin URI: https://webberzone.com/plugins/top-10/
* Description: Count daily and total visits per post and display the most popular posts based on the number of views
* Version: 4.4.3
* Author: WebberZone
* Author URI: https://webberzone.com
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: top-10
* Domain Path: /languages
* GitHub Plugin URI: https://github.com/WebberZone/top-10/
*/
namespace WebberZone\Top_Ten;
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* Holds the version of Top 10.
*
* @since 3.1.0
*/
if ( ! defined( 'TOP_TEN_VERSION' ) ) {
define( 'TOP_TEN_VERSION', '4.4.3' );
}
/**
* Holds the filesystem directory path (with trailing slash) for Top 10
*
* @since 2.3.0
*/
if ( ! defined( 'TOP_TEN_PLUGIN_FILE' ) ) {
define( 'TOP_TEN_PLUGIN_FILE', __FILE__ );
}
/**
* Holds the filesystem directory path (with trailing slash) for Top 10
*
* @since 2.3.0
*/
if ( ! defined( 'TOP_TEN_PLUGIN_DIR' ) ) {
define( 'TOP_TEN_PLUGIN_DIR', plugin_dir_path( TOP_TEN_PLUGIN_FILE ) );
}
/**
* Holds the filesystem directory path (with trailing slash) for Top 10
*
* @since 2.3.0
*/
if ( ! defined( 'TOP_TEN_PLUGIN_URL' ) ) {
define( 'TOP_TEN_PLUGIN_URL', plugin_dir_url( TOP_TEN_PLUGIN_FILE ) );
}
/**
* Holds the default thumbnail URL for Top 10.
*
* @since 4.2.0
*/
if ( ! defined( 'TOP_TEN_DEFAULT_THUMBNAIL_URL' ) ) {
define( 'TOP_TEN_DEFAULT_THUMBNAIL_URL', TOP_TEN_PLUGIN_URL . 'default.png' );
}
/**
* Number of days of data to be saved in the daily tables.
*
* @since 3.0.0
*/
if ( ! defined( 'TOP_TEN_STORE_DATA' ) ) {
define( 'TOP_TEN_STORE_DATA', 180 );
}
/**
* Number of days of raw visit rows to retain in the visits log table.
*
* @since 4.3.0
*/
if ( ! defined( 'TOP_TEN_LOG_STORE_DATA' ) ) {
define( 'TOP_TEN_LOG_STORE_DATA', 30 );
}
if ( ! function_exists( __NAMESPACE__ . '\\tptn_deactivate_other_instances' ) ) {
/**
* Deactivate other instances of Top 10 when this plugin is activated.
*
* @param string $plugin The plugin being activated.
* @param bool $network_wide Whether the plugin is being activated network-wide.
*/
function tptn_deactivate_other_instances( $plugin, $network_wide = false ) {
$free_plugin = 'top-10/top-10.php';
$pro_plugin = 'top-10-pro/top-10.php';
// Only proceed if one of our plugins is being activated.
if ( ! in_array( $plugin, array( $free_plugin, $pro_plugin ), true ) ) {
return;
}
$plugins_to_deactivate = array();
$deactivated_plugin = '';
// If pro is being activated, deactivate free.
if ( $pro_plugin === $plugin ) {
if ( is_plugin_active( $free_plugin ) || ( $network_wide && is_plugin_active_for_network( $free_plugin ) ) ) {
$plugins_to_deactivate[] = $free_plugin;
$deactivated_plugin = 'Top 10';
}
}
// If free is being activated, deactivate pro.
if ( $free_plugin === $plugin ) {
if ( is_plugin_active( $pro_plugin ) || ( $network_wide && is_plugin_active_for_network( $pro_plugin ) ) ) {
$plugins_to_deactivate[] = $pro_plugin;
$deactivated_plugin = 'Top 10 Pro';
}
}
if ( ! empty( $plugins_to_deactivate ) ) {
deactivate_plugins( $plugins_to_deactivate, false, $network_wide );
set_transient( 'tptn_deactivated_notice', $deactivated_plugin, 1 * HOUR_IN_SECONDS );
}
}
add_action( 'activated_plugin', __NAMESPACE__ . '\\tptn_deactivate_other_instances', 10, 2 );
}
// Show admin notice about automatic deactivation.
if ( ! has_action( 'admin_notices', __NAMESPACE__ . '\\tptn_show_deactivation_notice' ) ) {
add_action(
'admin_notices',
function () {
$deactivated_plugin = get_transient( 'tptn_deactivated_notice' );
if ( $deactivated_plugin ) {
/* translators: %s: Name of the deactivated plugin */
$message = sprintf( __( "Top 10 and Top 10 PRO should not be active at the same time. We've automatically deactivated %s.", 'top-10' ), $deactivated_plugin );
?>
<div class="updated" style="border-left: 4px solid #ffba00;">
<p><?php echo esc_html( $message ); ?></p>
</div>
<?php
delete_transient( 'tptn_deactivated_notice' );
}
}
);
}
/**
* Global variable holding the current database version of Top 10
*
* @since 1.0
*
* @var string
*/
global $tptn_db_version;
$tptn_db_version = '7.0';
if ( ! function_exists( __NAMESPACE__ . '\\tptn_freemius' ) ) {
// Load Freemius.
require_once plugin_dir_path( __FILE__ ) . 'load-freemius.php';
}
// Load the autoloader.
if ( ! function_exists( __NAMESPACE__ . '\\autoload' ) ) {
require_once plugin_dir_path( __FILE__ ) . 'includes/autoloader.php';
}
// Load the CrawlerDetect library (bundled directly; not via the Composer autoloader).
$tptn_crawler_detect_src = plugin_dir_path( __FILE__ ) . 'vendor/jaybizzle/crawler-detect/src/';
if ( ! class_exists( '\Jaybizzle\CrawlerDetect\CrawlerDetect' ) && is_dir( $tptn_crawler_detect_src ) ) {
require_once $tptn_crawler_detect_src . 'Fixtures/AbstractProvider.php';
require_once $tptn_crawler_detect_src . 'Fixtures/Crawlers.php';
require_once $tptn_crawler_detect_src . 'Fixtures/Exclusions.php';
require_once $tptn_crawler_detect_src . 'Fixtures/Headers.php';
require_once $tptn_crawler_detect_src . 'CrawlerDetect.php';
}
unset( $tptn_crawler_detect_src );
if ( ! function_exists( __NAMESPACE__ . '\wz_top_ten' ) ) {
/**
* Returns the main instance of Top 10 to prevent the need to use globals.
*
* @since 4.0.6
*
* @return Main Main instance of the plugin.
*/
function wz_top_ten(): Main {
return Main::get_instance();
}
}
if ( ! function_exists( __NAMESPACE__ . '\load_tptn' ) ) {
/**
* The main function responsible for returning the one true Top 10 instance to functions everywhere.
*
* @since 3.3.0
*/
function load_tptn(): void {
wz_top_ten();
}
add_action( 'plugins_loaded', __NAMESPACE__ . '\load_tptn' );
}
// Register the activation hook.
register_activation_hook( __FILE__, __NAMESPACE__ . '\Admin\Activator::activation_hook' );
// Register the deactivation hook.
register_deactivation_hook( __FILE__, __NAMESPACE__ . '\Admin\Activator::deactivation_hook' );
/*
*----------------------------------------------------------------------------
* Include files
*----------------------------------------------------------------------------
*/
if ( ! function_exists( 'tptn_get_settings' ) ) {
require_once plugin_dir_path( __FILE__ ) . 'includes/options-api.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/wz-pluggables.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/class-top-ten-query.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/functions.php';
}
/**
* Global variable holding the current settings for Top 10
*
* @since 1.9.3
*
* @var array
*/
global $tptn_settings;
$tptn_settings = tptn_get_settings();