-
Notifications
You must be signed in to change notification settings - Fork 0
/
mai-publisher.php
392 lines (346 loc) · 9.98 KB
/
mai-publisher.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
<?php
/**
* Plugin Name: Mai Publisher
* Plugin URI: https://bizbudding.com
* Description: Manage ads and more for websites in the Mai Publisher network.
* Version: 1.10.1
*
* Author: BizBudding
* Author URI: https://bizbudding.com
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) exit;
// Must be at the top of the file.
use YahnisElsts\PluginUpdateChecker\v5\PucFactory;
/**
* Main Mai_Publisher_Plugin Class.
*
* @since 0.1.0
*/
final class Mai_Publisher_Plugin {
/**
* @var Mai_Publisher_Plugin The one true Mai_Publisher_Plugin
*
* @since 0.1.0
*/
private static $instance;
/**
* Main Mai_Publisher_Plugin Instance.
*
* Insures that only one instance of Mai_Publisher_Plugin exists in memory at any one
* time. Also prevents needing to define globals all over the place.
*
* @since 0.1.0
* @static var array $instance
* @uses Mai_Publisher_Plugin::setup_constants() Setup the constants needed.
* @uses Mai_Publisher_Plugin::includes() Include the required files.
* @uses Mai_Publisher_Plugin::hooks() Activate, deactivate, etc.
* @see Mai_Publisher_Plugin()
* @return object | Mai_Publisher_Plugin The one true Mai_Publisher_Plugin
*/
static function instance() {
if ( ! isset( self::$instance ) ) {
// Setup the setup.
self::$instance = new Mai_Publisher_Plugin;
// Methods.
self::$instance->setup_constants();
self::$instance->includes();
self::$instance->hooks();
}
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 0.1.0
*
* @return void
*/
function __clone() {
// Cloning instances of the class is forbidden.
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'mai-publisher' ), '1.0' );
}
/**
* Disable unserializing of the class.
*
* @since 0.1.0
*
* @return void
*/
function __wakeup() {
// Unserializing instances of the class is forbidden.
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'mai-publisher' ), '1.0' );
}
/**
* Setup plugin constants.
*
* @since 0.1.0
*
* @return void
*/
private function setup_constants() {
// Plugin version.
if ( ! defined( 'MAI_PUBLISHER_VERSION' ) ) {
define( 'MAI_PUBLISHER_VERSION', '1.10.1' );
}
// Plugin Folder Path.
if ( ! defined( 'MAI_PUBLISHER_DIR' ) ) {
define( 'MAI_PUBLISHER_DIR', plugin_dir_path( __FILE__ ) );
}
// Plugin Folder URL.
if ( ! defined( 'MAI_PUBLISHER_URL' ) ) {
define( 'MAI_PUBLISHER_URL', plugin_dir_url( __FILE__ ) );
}
}
/**
* Include required files.
*
* @since 0.1.0
*
* @return void
*/
private function includes() {
// Include vendor libraries.
require_once __DIR__ . '/vendor/autoload.php';
// Includes.
foreach ( glob( MAI_PUBLISHER_DIR . 'includes/' . '*.php' ) as $file ) { include $file; }
// Classes.
foreach ( glob( MAI_PUBLISHER_DIR . 'classes/' . '*.php' ) as $file ) { include $file; }
// Blocks.
include MAI_PUBLISHER_DIR . 'blocks/ad/block.php';
include MAI_PUBLISHER_DIR . 'blocks/ad-unit/block.php';
include MAI_PUBLISHER_DIR . 'blocks/ad-unit-client/block.php';
include MAI_PUBLISHER_DIR . 'blocks/ad-video/block.php';
include MAI_PUBLISHER_DIR . 'blocks/analytics-tracker/block.php';
// Instantiate classes.
new Mai_Publisher_Ad_Field_Group;
new Mai_Publisher_Ad_Fields;
new Mai_Publisher_Settings_Posts;
new Mai_Publisher_Plugin_Compatibility;
new Mai_Publisher_Categories_Field_Group;
new Mai_Publisher_Generate_Ads;
new Mai_Publisher_Ad_Unit_Block;
new Mai_Publisher_Ad_Unit_Client_Block;
new Mai_Publisher_Ad_Video_Block;
new Mai_Publisher_Display;
new Mai_Publisher_Endpoint;
new Mai_Publisher_Output;
new Mai_Publisher_Views;
new Mai_Publisher_Tracking;
new Mai_Publisher_Tracking_Content;
new Mai_Publisher_Upgrade;
if ( ! class_exists( 'Mai_Ads_Manager' ) ) {
new Mai_Publisher_Ad_Block;
}
if ( ! class_exists( 'Mai_Analytics_Plugin' ) ) {
new Mai_Publisher_Analytics_Tracker_Block;
}
if ( class_exists( 'Mai_Engine' ) ) {
new Mai_Publisher_Entries;
}
if ( is_admin() ) {
new Mai_Publisher_Admin;
new Mai_Publisher_Settings;
new Mai_Publisher_Settings_Categories;
new Mai_Publisher_Settings_Ad_Units_Config;
// new Mai_Publisher_Settings_Ad_Txt;
}
}
/**
* Run the hooks.
*
* @since 0.1.0
*
* @return void
*/
function hooks() {
add_action( 'plugins_loaded', [ $this, 'updater' ] );
add_action( 'init', [ $this, 'register_content_types' ] );
add_action( 'pre_get_posts', [ $this, 'orderby_title' ] );
add_action( 'admin_menu', [ $this, 'add_page' ], 12 );
register_activation_hook( __FILE__, [ $this, 'activate' ] );
register_deactivation_hook( __FILE__, 'flush_rewrite_rules' );
}
/**
* Setup the updater.
*
* composer require yahnis-elsts/plugin-update-checker
*
* @since 0.1.0
*
* @uses https://github.com/YahnisElsts/plugin-update-checker/
*
* @return void
*/
function updater() {
// Bail if plugin updater is not loaded.
if ( ! class_exists( 'YahnisElsts\PluginUpdateChecker\v5\PucFactory' ) ) {
return;
}
// Setup the updater.
$updater = PucFactory::buildUpdateChecker( 'https://github.com/maithemewp/mai-publisher/', __FILE__, 'mai-publisher' );
// Set the branch that contains the stable release.
$updater->setBranch( 'main' );
// Maybe set github api token.
if ( defined( 'MAI_GITHUB_API_TOKEN' ) ) {
$updater->setAuthentication( MAI_GITHUB_API_TOKEN );
}
// Add icons for Dashboard > Updates screen.
if ( function_exists( 'mai_get_updater_icons' ) && $icons = mai_get_updater_icons() ) {
$updater->addResultFilter(
function ( $info ) use ( $icons ) {
$info->icons = $icons;
return $info;
}
);
}
}
/**
* Register content types.
*
* @since 0.1.0
*
* @return void
*/
function register_content_types() {
/***********************
* Custom Post Types *
***********************/
register_post_type( 'mai_ad',
[
'exclude_from_search' => false,
'has_archive' => true,
'hierarchical' => false,
'labels' => [
'name' => _x( 'Mai Ads', 'Mai Ad general name', 'mai-publisher' ),
'singular_name' => _x( 'Mai Ad', 'Mai Ad singular name', 'mai-publisher' ),
'menu_name' => _x( 'Mai Publisher', 'Mai Ad admin menu', 'mai-publisher' ),
'name_admin_bar' => _x( 'Mai Ad', 'Mai Ad add new on admin bar', 'mai-publisher' ),
'add_new' => _x( 'Add New Mai Ad', 'Ad', 'mai-publisher' ),
'add_new_item' => __( 'Add New Mai Ad', 'mai-publisher' ),
'new_item' => __( 'New Mai Ad', 'mai-publisher' ),
'edit_item' => __( 'Edit Mai Ad', 'mai-publisher' ),
'view_item' => __( 'View Mai Ad', 'mai-publisher' ),
'all_items' => __( 'Mai Ads', 'mai-publisher' ),
'search_items' => __( 'Search Mai Ads', 'mai-publisher' ),
'parent_item_colon' => __( 'Parent Mai Ads:', 'mai-publisher' ),
'not_found' => __( 'No Mai Ads found.', 'mai-publisher' ),
'not_found_in_trash' => __( 'No Mai Ads found in Trash.', 'mai-publisher' )
],
'menu_icon' => 'dashicons-media-code',
'menu_position' => 58.994, // Idk why this isn't working. Fixed later in admin_menu hook.
'public' => false,
'publicly_queryable' => false,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'show_in_rest' => true,
'show_ui' => true,
'rewrite' => false,
'supports' => [ 'title', 'editor', 'excerpt' ],
]
);
}
/**
* Order dashboard ad list by title.
*
* @since 0.1.0
*
* @param object $query The query object.
*
* @return void
*/
function orderby_title( $query ) {
// Bail if not in admin.
if ( ! is_admin() ) {
return;
}
// Bail if not the main query.
if ( ! $query->is_main_query() ) {
return;
}
// Bail if not the mai_ad post type archive.
if ( ! $query->is_post_type_archive( 'mai_ad' ) ) {
return;
}
// Set order.
$query->set( 'orderby', 'menu_order' );
$query->set( 'order','ASC' );
}
/**
* Adds additional link to Mai Ads menu item via Mai Theme.
*
* @since 1.2.0
*
* @return void
*/
function add_page() {
if ( ! class_exists( 'Mai_Engine' ) ) {
return;
}
global $menu;
// Find the key of the CPT menu item
foreach ( $menu as $key => $value ) {
if ( 'edit.php?post_type=mai_ad' !== $value[2] ) {
continue;
}
// Store and unset.
$item = $menu[ $key ];
unset( $menu[ $key ] );
// Re-insert right before Mai Theme.
// WooCommerce Marketing is 58.
// WP Forms is 58.9.
// Mai Theme is 58.995.
// Genesis is 58.996.
$menu[ '58.994' ] = $item;
break;
}
add_submenu_page(
'mai-theme',
esc_html__( 'Mai Ads', 'mai-publisher' ),
esc_html__( 'Mai Ads', 'mai-publisher' ),
'manage_options',
'edit.php?post_type=mai_ad',
'',
null
);
}
/**
* Plugin activation.
*
* @since 0.1.0
*
* @return void
*/
function activate() {
// Set default options.
if ( is_null( get_option( 'mai_publisher', null ) ) ) {
update_option( 'mai_publisher', maipub_get_default_options() );
}
// Register content types and flush permalinks.
$this->register_content_types();
flush_rewrite_rules();
}
}
/**
* The main function for that returns Mai_Publisher_Plugin
*
* The main function responsible for returning the one true Mai_Publisher_Plugin
* Instance to functions everywhere.
*
* Use this function like you would a global variable, except without needing
* to declare the global.
*
* Example: <?php $plugin = Mai_Publisher_Plugin(); ?>
*
* @since 0.1.0
*
* @return object|Mai_Publisher_Plugin The one true Mai_Publisher_Plugin Instance.
*/
function maipub_plugin() {
return Mai_Publisher_Plugin::instance();
}
// Get Mai_Publisher_Plugin Running.
maipub_plugin();