-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.php
220 lines (198 loc) · 5.8 KB
/
plugin.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
<?php
/**
* Plugin Name: Carkeek Blocks - YouTube Lists
* Plugin URI: https://github.com/pattyok/carkeek-blocks-youtube-list
* GitHub Plugin URI: pattyok/carkeek-blocks-youtube-list
* Requires PHP: 7.0
* Requires at least: 5.6
* Primary Branch: main
* Description: A custom post type and a block for embed a group of YouTube videos and loading them --fast!
* Author: Patty O'Hara
* Version: 1.1.03
* Author URI https://carkeekstudios.com/
* Text Domain: carkeek-blocks
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'CarkeekBlocksYT' ) ) :
/**
* Main CarkeekBlocksYT Class.
*
* @since 1.0
*/
final class CarkeekBlocksYT {
/**
* The plugin's instance
*
* @var CarkeekBlocksYT the main var
* @since 1.0
*/
private static $instance;
/**
* Main CarkeekBlocksYT instance
*
* Insures only one instance exists. Also prevents needing to define globals all around.
*
* @since 1.0.0
* @static
* @return object|CarkeekBlocksYT
*/
public static function instance() {
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof CarkeekBLocks ) ) {
self::$instance = new CarkeekBlocksYT();
self::$instance->setup_constants();
self::$instance->init();
self::$instance->asset_suffix();
self::$instance->includes();
}
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.0
* @access protected
* @return void
*/
public function __clone() {
// Cloning instances of the class is forbidden.
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheating huh?', 'carkeek-blocks' ), '1.0' );
}
/**
* Disable unserializing of the class.
*
* @since 1.0.0
* @access protected
* @return void
*/
public function __wakeup() {
// Unserializing instances of the class is forbidden.
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheating huh?', 'carkeek-blocks' ), '1.0' );
}
/**
* Setup plugin constants.
*
* @access private
* @since 1.0.0
* @return void
*/
private function setup_constants() {
$plugin_data = get_file_data( __FILE__, array( 'Version' => 'Version' ), false );
$plugin_version = $plugin_data['Version'];
$this->define( 'CARKEEKBLOCKS_YT_DEBUG', false );
$this->define( 'CARKEEKBLOCKS_YT_VERSION', $plugin_version );
$this->define( 'CARKEEKBLOCKS_YT_HAS_PRO', false );
$this->define( 'CARKEEKBLOCKS_YT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
$this->define( 'CARKEEKBLOCKS_YT_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
$this->define( 'CARKEEKBLOCKS_YT_PLUGIN_FILE', __FILE__ );
$this->define( 'CARKEEKBLOCKS_YT_PLUGIN_BASE', plugin_basename( __FILE__ ) );
}
/**
* Define constant if not already set.
*
* @param string|string $name Name of the definition.
* @param string|bool $value Default value.
*/
private function define( $name, $value ) {
if ( ! defined( $name ) ) {
define( $name, $value );
}
}
/**
* Include required files.
*
* @access private
* @since 4.1
* @return void
*/
private function includes() {
require_once CARKEEKBLOCKS_YT_PLUGIN_DIR . 'includes/class-carkeekblocks-yt-register.php'; // phpcs:ignore
require_once CARKEEKBLOCKS_YT_PLUGIN_DIR . 'includes/class-carkeekblocks-yt-custompost.php'; // phpcs:ignore
}
/**
* Load actions
*
* @return void
*/
private function init() {
add_action( 'plugins_loaded', array( $this, 'load_textdomain' ), 99 );
add_action( 'enqueue_block_editor_assets', array( $this, 'block_localization' ) );
}
/**
* Change the plugin's minified or src file name, based on debug mode.
*
* @since 1.0.0
*/
public function asset_suffix() {
if ( true === CARKEEKBLOCKS_YT_DEBUG ) {
define( 'CARKEEKBLOCKS_YT_ASSET_SUFFIX', null );
} else {
define( 'CARKEEKBLOCKS_YT_ASSET_SUFFIX', '.min' );
}
}
/**
* If debug is on, serve unminified source assets.
*
* @since 1.0.0
* @param string|string $type The type of resource.
* @param string|string $directory Any extra directories needed.
*/
public function asset_source( $type = 'js', $directory = null ) {
if ( 'js' !== $type ) {
return CARKEEKBLOCKS_YT_PLUGIN_URL . 'build/css/' . $directory;
}
if ( true === CARKEEKBLOCKS_YT_DEBUG ) {
return CARKEEKBLOCKS_YT_PLUGIN_URL . 'src/' . $type . '/' . $directory;
}
return CARKEEKBLOCKS_YT_PLUGIN_URL . 'build/' . $type . '/' . $directory;
}
/**
* Loads the plugin language files.
*
* @access public
* @since 1.0.0
* @return void
*/
public function load_textdomain() {
load_plugin_textdomain( 'block-options', false, dirname( plugin_basename( CARKEEKBLOCKS_YT_PLUGIN_DIR ) ) . '/languages/' );
}
/**
* Enqueue localization data for our blocks.
*
* @access public
*/
public function block_localization() {
if ( function_exists( 'wp_set_script_translations' ) ) {
wp_set_script_translations( 'carkeekblocks-editor', 'carkeekblocks' );
}
}
}
endif;
/**
* The main function for that returns the main class
*
* The main function responsible for returning the one true version
* Instance to functions everywhere.
*
* Use this function like you would a global variable, except without needing
* to declare the global.
*
* Example: <?php $blockopts = CarkeekBlocksYT(); ?>
*
* @since 1.0
* @return object|CarkeekBlocksYT The one true EditorsKit Instance.
*/
function carkeekblocks_YT() {
return CarkeekBlocksYT::instance();
}
// Get Plugin Running.
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
// Get Plugin Running. Load on plugins_loaded action to avoid issue on multisite.
add_action( 'plugins_loaded', 'carkeekblocks' );
} else {
carkeekblocks_YT();
}