-
Notifications
You must be signed in to change notification settings - Fork 8
/
mashshare.php
executable file
·288 lines (260 loc) · 10.9 KB
/
mashshare.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
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<?php
/**
* Plugin Name: Mashshare Share Buttons
* Plugin URI: https://www.mashshare.net
* Description: Mashshare is a Share functionality inspired by the the great website Mashable for Facebook and Twitter. More networks available.
* Author: WPChill
* Author URI: https://wpchill.com/
* Version: {{ version }}
* Text Domain: mashsb
* Domain Path: /languages
*
* Copyright 2016-2022 René Hermenau [email protected]
* Copyright 2023 WPChill [email protected]
*
* Original Plugin URI: https://www.mashshare.net
* Original Author URI: https://www.mashshare.net
* Original Author: https://profiles.wordpress.org/renehermi/
*
* Mashshare Share Buttons 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
* any later version.
*
* Mashshare Share Buttons 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 Mashshare Share Buttons. If not, see <http://www.gnu.org/licenses/>.
*
* @package MASHSB
* @category Core
* @author René Hermenau
* @version 2.3.6
*/
// Exit if accessed directly
if( !defined( 'ABSPATH' ) )
exit;
// Plugin version
if( !defined( 'MASHSB_VERSION' ) ) {
define( 'MASHSB_VERSION', '{{ version }}' );
}
// Debug mode
if( !defined( 'MASHSB_DEBUG' ) ) {
define( 'MASHSB_DEBUG', false );
}
if( !class_exists( 'Mashshare' ) ) :
/**
* Main mashsb Class
*
* @since 1.0.0
*/
final class Mashshare {
/** Singleton ************************************************************ */
/**
* @var Mashshare The one and only Mashshare
* @since 1.0
*/
private static $instance;
/**
* MASHSB HTML Element Helper Object
*
* @var object
* @since 2.0.0
*/
public $html;
/* MASHSB LOGGER Class
*
*/
public $logger;
/**
* MASHSB TEMPLATE Object
* @var object
*/
public $template;
/**
* Main Mashshare Instance
*
* Insures that only one instance of mashshare exists in memory at any one
* time. Also prevents needing to define globals all over the place.
*
* @since 1.0
* @static
* @staticvar array $instance
* @uses mashshare::setup_constants() Setup the constants needed
* @uses mashshare::includes() Include the required files
* @uses mashshare::load_textdomain() load the language files
* @see MASHSB()
* @return The one true mashshare
*/
public static function instance() {
if( !isset( self::$instance ) && !( self::$instance instanceof Mashshare ) ) {
self::$instance = new Mashshare;
self::$instance->setup_constants();
self::$instance->includes();
self::$instance->load_textdomain();
self::$instance->load_hooks();
self::$instance->html = new MASHSB_HTML_Elements();
self::$instance->logger = new mashsbLogger( "mashlog_" . date( "Y-m-d" ) . ".log", mashsbLogger::INFO );
self::$instance->template = new mashsbBuildTemplates();
}
return self::$instance;
}
/**
* Throw error on object clone
*
* The whole idea of the singleton design pattern is that there is a single
* object therefore, we don't want the object to be cloned.
*
* @since 1.0
* @access protected
* @return void
*/
public function __clone() {
// Cloning instances of the class is forbidden
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'MASHSB' ), '1.0' );
}
/**
* Disable unserializing of the class
*
* @since 1.0
* @access protected
* @return void
*/
public function __wakeup() {
// Unserializing instances of the class is forbidden
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'MASHSB' ), '1.0' );
}
/**
* Setup plugin constants
*
* @access private
* @since 1.0
* @return void
*/
private function setup_constants() {
global $wpdb;
// Plugin Folder Path
if( !defined( 'MASHSB_PLUGIN_DIR' ) ) {
define( 'MASHSB_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
}
// Plugin Folder URL
if( !defined( 'MASHSB_PLUGIN_URL' ) ) {
define( 'MASHSB_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
}
// Plugin Root File
if( !defined( 'MASHSB_PLUGIN_FILE' ) ) {
define( 'MASHSB_PLUGIN_FILE', __FILE__ );
}
// Plugin database
// Plugin Root File
if( !defined( 'MASHSB_TABLE' ) ) {
define( 'MASHSB_TABLE', $wpdb->prefix . 'mashsharer' );
}
}
/**
* Include required files
*
* @access private
* @since 1.0
* @return void
*/
private function includes() {
global $mashsb_options;
require_once MASHSB_PLUGIN_DIR . 'includes/admin/settings/register-settings.php';
$mashsb_options = mashsb_get_settings();
require_once MASHSB_PLUGIN_DIR . 'includes/scripts.php';
require_once MASHSB_PLUGIN_DIR . 'includes/template-functions.php';
require_once MASHSB_PLUGIN_DIR . 'includes/class-mashsb-license-handler.php';
require_once MASHSB_PLUGIN_DIR . 'includes/class-mashsb-html-elements.php';
require_once MASHSB_PLUGIN_DIR . 'includes/debug/classes/MashDebug.interface.php';
require_once MASHSB_PLUGIN_DIR . 'includes/debug/classes/MashDebug.class.php';
require_once MASHSB_PLUGIN_DIR . 'includes/logger.php';
require_once MASHSB_PLUGIN_DIR . 'includes/actions.php';
require_once MASHSB_PLUGIN_DIR . 'includes/helper.php';
require_once MASHSB_PLUGIN_DIR . 'includes/class-mashsb-shared-posts-widget.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/settings/metabox-settings.php'; /* move into is_admin */
require_once MASHSB_PLUGIN_DIR . 'includes/admin/meta-box/meta-box.php';
require_once MASHSB_PLUGIN_DIR . 'includes/header-meta-tags.php';
require_once MASHSB_PLUGIN_DIR . 'includes/class-build-templates.php';
require_once MASHSB_PLUGIN_DIR . 'includes/sharecount-functions.php';
require_once MASHSB_PLUGIN_DIR . 'includes/shorturls.php';
require_once MASHSB_PLUGIN_DIR . 'includes/libraries/class-google-shorturl.php';
require_once MASHSB_PLUGIN_DIR . 'includes/libraries/class-bitly-shorturl.php';
//require_once MASHSB_PLUGIN_DIR . 'includes/admin/tracking.php'; // Ensure cron is loading even on frontpage
require_once MASHSB_PLUGIN_DIR . 'includes/debug/debug.php';
require_once MASHSB_PLUGIN_DIR . 'includes/amp.php';
require_once MASHSB_PLUGIN_DIR . 'includes/cron.php';
if( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) {
require_once MASHSB_PLUGIN_DIR . 'includes/install.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/add-ons.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/admin-actions.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/admin-notices.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/admin-footer.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/admin-pages.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/plugins.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/welcome.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/settings/display-settings.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/settings/contextual-help.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/settings/user-profiles.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/tools.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/dashboard.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/feedback.php';
require_once MASHSB_PLUGIN_DIR . 'includes/admin/upgrades/upgrade-functions.php';
}
}
public static function load_hooks() {
if( is_admin() && mashsb_is_plugins_page() ) {
add_filter( 'admin_footer', 'mashsb_add_deactivation_feedback_modal' );
}
}
/**
* Loads the plugin language files
*
* @access public
* @since 1.4
* @return void
*/
public function load_textdomain() {
// Set filter for plugin's languages directory
$mashsb_lang_dir = dirname( plugin_basename( MASHSB_PLUGIN_FILE ) ) . '/languages/';
$mashsb_lang_dir = apply_filters( 'mashsb_languages_directory', $mashsb_lang_dir );
// Traditional WordPress plugin locale filter
$locale = apply_filters( 'plugin_locale', get_locale(), 'mashsb' );
$mofile = sprintf( '%1$s-%2$s.mo', 'mashsb', $locale );
// Setup paths to current locale file
$mofile_local = $mashsb_lang_dir . $mofile;
$mofile_global = WP_LANG_DIR . '/mashsb/' . $mofile;
//echo $mofile_local;
if( file_exists( $mofile_global ) ) {
// Look in global /wp-content/languages/MASHSB folder
load_textdomain( 'mashsb', $mofile_global );
} elseif( file_exists( $mofile_local ) ) {
// Look in local /wp-content/plugins/mashshare/languages/ folder
load_textdomain( 'mashsb', $mofile_local );
} else {
// Load the default language files
load_plugin_textdomain( 'mashsb', false, $mashsb_lang_dir );
}
}
}
endif; // End if class_exists check
/**
* The main function responsible for returning the one true Mashshare
* Instance to functions everywhere.
*
* Use this function like you would a global variable, except without needing
* to declare the global.
*
* Example: $MASHSB = MASHSB();
*
* @since 2.0.0
* @return object The one true Mashshare Instance
*/
function MASHSB() {
return Mashshare::instance();
}
// Get MASHSB Running
MASHSB();