-
Notifications
You must be signed in to change notification settings - Fork 0
/
class-svl-support-core.php
120 lines (100 loc) · 2.2 KB
/
class-svl-support-core.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
<?php
/**
* Core Loader Class
*
* @package Trial Kev
* @author SVL Studios
* @copyright Copyright (c) 2021, SVL Studios
* @link https://www.svlstudios.com
* @since Trial Kev 1.0
*/
defined( 'ABSPATH' ) || exit;
if ( ! class_exists( 'SVL_Support_Core' ) ) {
/**
* Class Requite_Core
*/
class SVL_Support_Core {
/**
* Class instance.
*
* @var null
*/
private static $instance = null;
/**
* Plugin version.
*
* @var stringt
*/
public static $version = '';
/**
* Plugin directory.
*
* @var string
*/
public static $dir = '';
/**
* Plugin URL.
*
* @var string
*/
public static $url = '';
/**
* Sets dev_mode for minified or non minified assets.
*
* @var bool
*/
public static $dev_mode = false;
/**
* Create class instance.
*
* @return SVL_Support_Core
*/
public static function instance(): ?SVL_Support_Core {
if ( ! self::$instance ) {
self::$instance = new self();
// Set the plugin directory.
self::$dir = plugin_dir_path( __FILE__ );
// Set the plugin URL.
self::$url = plugin_dir_url( __FILE__ );
// Run inclues.
self::$instance->includes();
// Set hooks.
self::$instance->hooks();
}
return self::$instance;
}
/**
* Include files.
*/
public function includes() {
require_once self::$dir . 'inc/class-svl-support-includes.php';
require_once self::$dir . 'inc/class-svl-support-post-type.php';
require_once self::$dir . 'inc/class-svl-support-ajax.php';
// Load textdomain.
load_plugin_textdomain( 'svl-support', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
}
/**
* Run hooks.
*/
private function hooks() {
// phpcs:ignore WordPress.NamingConventions.ValidHookName
do_action( 'svl/support/plugin/hooks', $this );
}
/**
* Plugin activate hook.
*
* @param bool $network_wide Is network wide.
*/
public static function activate( bool $network_wide ) {
// Nothing to do here.
}
/**
* Plugin deacvtivate hook.
*
* @param bool $network_wide Is network wide.
*/
public static function deactivate( bool $network_wide ) {
// Nothing to do here.
}
}
}