-
Notifications
You must be signed in to change notification settings - Fork 98
/
sportspress.php
477 lines (409 loc) · 12 KB
/
sportspress.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
<?php
/**
* Plugin Name: SportsPress
* Plugin URI: http://themeboy.com/sportspress/
* Description: Manage your club and its players, staff, events, league tables, and player lists.
* Version: 2.7.22
* Author: ThemeBoy
* Author URI: http://themeboy.com
* Requires at least: 3.8
* Tested up to: 6.4.3
*
* Text Domain: sportspress
* Domain Path: /languages/
*
* @package SportsPress
* @category Core
* @author ThemeBoy
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( ! class_exists( 'SportsPress' ) ) :
/**
* Main SportsPress Class
*
* @class SportsPress
* @version 2.7.22
*/
final class SportsPress {
/**
* @var string
*/
public $version = '2.7.22';
/**
* @var SportsPress The single instance of the class
* @since 0.7
*/
protected static $_instance = null;
/**
* @var SP_Modules $modules
*/
public $modules = null;
/**
* @var SP_Countries $countries
*/
public $countries = null;
/**
* @var SP_Formats $formats
*/
public $formats = null;
/**
* @var SP_Templates $templates
*/
public $templates = null;
/**
* @var SP_Feeds $feeds
*/
public $feeds = null;
/**
* @var array
*/
public $text = array();
/**
* Main SportsPress Instance
*
* Ensures only one instance of SportsPress is loaded or can be loaded.
*
* @since 0.7
* @static
* @see SP()
* @return SportsPress - Main instance
*/
public static function instance() {
if ( is_null( self::$_instance ) ) {
self::$_instance = new self();
}
return self::$_instance;
}
/**
* Cloning is forbidden.
*
* @since 0.7
*/
public function __clone() {
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'sportspress' ), '0.7' );
}
/**
* Unserializing instances of this class is forbidden.
*
* @since 0.7
*/
public function __wakeup() {
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'sportspress' ), '0.7' );
}
/**
* SportsPress Constructor.
*
* @access public
* @return SportsPress
*/
public function __construct() {
// Auto-load classes on demand
if ( function_exists( '__autoload' ) ) {
spl_autoload_register( '__autoload' );
}
spl_autoload_register( array( $this, 'autoload' ) );
// Define constants
$this->define_constants();
// Include required files
$this->includes();
// Hooks
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'action_links' ) );
add_action( 'init', array( $this, 'init' ), 0 );
add_action( 'init', array( 'SP_Shortcodes', 'init' ) );
add_action( 'after_setup_theme', array( $this, 'setup_environment' ) );
add_action( 'tgmpa_register', array( $this, 'extension' ) );
// Include core modules
$this->include_modules();
// Loaded action
do_action( 'sportspress_loaded' );
}
/**
* Show action links on the plugin screen.
*
* @param mixed $links
* @return array
*/
public function action_links( $links ) {
return array_merge(
array(
'<a href="' . admin_url( 'admin.php?page=sportspress' ) . '">' . esc_attr__( 'Settings', 'sportspress' ) . '</a>',
'<a href="' . apply_filters( 'sportspress_docs_url', 'http://tboy.co/docs' ) . '">' . esc_attr__( 'Docs', 'sportspress' ) . '</a>',
'<a href="' . apply_filters( 'sportspress_pro_url', 'http://tboy.co/pro' ) . '">' . esc_attr__( 'Upgrade', 'sportspress' ) . '</a>',
),
$links
);
}
/**
* Auto-load SP classes on demand to reduce memory consumption.
*
* @param mixed $class
* @return void
*/
public function autoload( $class ) {
$path = null;
$class = strtolower( $class );
$file = 'class-' . str_replace( '_', '-', $class ) . '.php';
if ( strpos( $class, 'sp_shortcode_' ) === 0 ) {
$path = $this->plugin_path() . '/includes/shortcodes/';
} elseif ( strpos( $class, 'sp_meta_box' ) === 0 ) {
$path = $this->plugin_path() . '/includes/admin/post-types/meta-boxes/';
} elseif ( strpos( $class, 'sp_admin' ) === 0 ) {
$path = $this->plugin_path() . '/includes/admin/';
}
if ( $path && is_readable( $path . $file ) ) {
include_once $path . $file;
return;
}
// Fallback
if ( strpos( $class, 'sp_' ) === 0 ) {
$path = $this->plugin_path() . '/includes/';
}
if ( $path && is_readable( $path . $file ) ) {
include_once $path . $file;
return;
}
}
/**
* Define SP Constants.
*/
private function define_constants() {
define( 'SP_PLUGIN_FILE', __FILE__ );
define( 'SP_VERSION', $this->version );
if ( ! defined( 'SP_TEMPLATE_PATH' ) ) {
define( 'SP_TEMPLATE_PATH', $this->template_path() );
}
if ( ! defined( 'SP_DELIMITER' ) ) {
define( 'SP_DELIMITER', '|' );
}
}
/**
* Include required core files used in admin and on the frontend.
*/
private function includes() {
include_once 'includes/sp-core-functions.php';
include_once 'includes/class-sp-install.php';
if ( is_admin() ) {
include_once 'includes/admin/class-sp-admin.php';
}
if ( defined( 'DOING_AJAX' ) ) {
$this->ajax_includes();
}
if ( ! is_admin() || defined( 'DOING_AJAX' ) ) {
$this->frontend_includes();
}
// Post types
include_once 'includes/class-sp-post-types.php'; // Registers post types
// Include abstract classes
include_once 'includes/abstracts/abstract-sp-custom-post.php'; // Custom posts
include_once 'includes/abstracts/abstract-sp-secondary-post.php'; // Secondary posts
// Classes (used on all pages)
include_once 'includes/class-sp-modules.php'; // Defines available modules
include_once 'includes/class-sp-countries.php'; // Defines continents and countries
include_once 'includes/class-sp-formats.php'; // Defines custom post type formats
include_once 'includes/class-sp-templates.php'; // Defines custom post type templates
include_once 'includes/class-sp-feeds.php'; // Adds feeds
// Include template functions making them pluggable by plugins and themes.
include_once 'includes/sp-template-functions.php';
// Include template hooks in time for themes to remove/modify them
include_once 'includes/sp-template-hooks.php';
// WPML-related localization hooks
include_once 'includes/class-sp-wpml.php';
// REST API
include_once 'includes/api/class-sp-rest-api.php';
// TGMPA
include_once 'includes/libraries/class-tgm-plugin-activation.php';
}
/**
* Include required ajax files.
*/
public function ajax_includes() {
include_once 'includes/class-sp-ajax.php'; // Ajax functions for admin and the front-end
}
/**
* Include required frontend files.
*/
public function frontend_includes() {
include_once 'includes/class-sp-template-loader.php'; // Template Loader
include_once 'includes/class-sp-frontend-scripts.php'; // Frontend Scripts
include_once 'includes/class-sp-shortcodes.php'; // Shortcodes class
}
/**
* Include core modules.
*/
private function include_modules() {
$dir = scandir( $this->plugin_path() . '/modules' );
if ( $dir ) {
$path = $this->plugin_path() . '/modules/';
foreach ( $dir as $module ) {
if ( $path && substr( $module, 0, 1 ) !== '.' ) {
if ( is_readable( $path . $module ) ) {
include_once $path . $module;
}
}
}
}
}
/**
* Init SportsPress when WordPress Initialises.
*/
public function init() {
// Before init action
do_action( 'before_sportspress_init' );
// Set up localisation
$this->load_plugin_textdomain();
// Load class instances
$this->modules = new SP_Modules(); // Modules class
$this->countries = new SP_Countries(); // Countries class
$this->formats = new SP_Formats(); // Formats class
$this->templates = new SP_Templates(); // Templates class
$this->feeds = new SP_Feeds(); // Feeds class
// Load string options
$this->text = get_option( 'sportspress_text', array() );
// Init action
do_action( 'sportspress_init' );
}
/**
* Load Localisation files.
*
* Note: the first-loaded translation file overrides any following ones if the same translation is present
*/
public function load_plugin_textdomain() {
$locale = apply_filters( 'plugin_locale', get_locale(), 'sportspress' );
// Global + Frontend Locale
load_textdomain( 'sportspress', WP_LANG_DIR . "/sportspress/sportspress-$locale.mo" );
load_plugin_textdomain( 'sportspress', false, plugin_basename( dirname( __FILE__ ) . '/languages' ) );
}
/**
* Ensure theme and server variable compatibility and setup image sizes.
*/
public function setup_environment() {
if ( ! current_theme_supports( 'post-thumbnails' ) ) {
add_theme_support( 'post-thumbnails' );
}
// Add image sizes
add_image_size( 'sportspress-crop-medium', 300, 300, true );
add_image_size( 'sportspress-fit-medium', 300, 300, false );
add_image_size( 'sportspress-fit-icon', 128, 128, false );
add_image_size( 'sportspress-fit-mini', 32, 32, false );
}
/**
* Recommend SportsPress extension for available sports.
*/
public static function extension() {
$sport = sp_array_value( $_POST, 'sportspress_sport', get_option( 'sportspress_sport', null ), 'key' );
if ( ! $sport ) {
return;
}
$plugins = array();
switch ( $sport ) :
case 'baseball':
$plugins[] = array(
'name' => 'SportsPress for Baseball',
'slug' => 'sportspress-for-baseball',
'required' => false,
'version' => '1.0',
);
break;
case 'basketball':
$plugins[] = array(
'name' => 'SportsPress for Basketball',
'slug' => 'sportspress-for-basketball',
'required' => false,
'version' => '0.9.1',
);
break;
case 'cricket':
$plugins[] = array(
'name' => 'SportsPress for Cricket',
'slug' => 'sportspress-for-cricket',
'required' => false,
'version' => '1.1.1',
);
break;
case 'golf':
$plugins[] = array(
'name' => 'SportsPress for Golf',
'slug' => 'sportspress-for-golf',
'required' => false,
'version' => '0.9.1',
);
break;
case 'soccer':
$plugins[] = array(
'name' => 'SportsPress for Football (Soccer)',
'slug' => 'sportspress-for-soccer',
'required' => false,
'version' => '0.9.6',
);
break;
case 'volleyball':
$plugins[] = array(
'name' => 'SportsPress for Volleyball',
'slug' => 'sportspress-for-volleyball',
'required' => false,
'version' => '0.9',
);
break;
endswitch;
$config = array(
'id' => 'sportspress',
'default_path' => '',
'menu' => 'tgmpa-install-plugins',
'parent_slug' => 'plugins.php',
'capability' => 'manage_options',
'has_notices' => true,
'dismissable' => true,
'is_automatic' => true,
'message' => '',
'strings' => array(
'nag_type' => 'updated',
),
);
tgmpa( $plugins, $config );
}
/** Helper functions ******************************************************/
/**
* Get the plugin url.
*
* @return string
*/
public function plugin_url() {
return untrailingslashit( plugins_url( '/', __FILE__ ) );
}
/**
* Get the plugin path.
*
* @return string
*/
public function plugin_path() {
return untrailingslashit( plugin_dir_path( __FILE__ ) );
}
/**
* Get the template path.
*
* @return string
*/
public function template_path() {
return apply_filters( 'SP_TEMPLATE_PATH', 'sportspress/' );
}
}
endif;
if ( ! function_exists( 'SP' ) ) :
/**
* Returns the main instance of SP to prevent the need to use globals.
*
* @since 0.7
* @return SportsPress
*/
function SP() {
return SportsPress::instance();
}
endif;
SP();
/**
* Want to work with us?
*
* @link https://www.themeboy.com/jobs/
*/