-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnhrst-smartsync-table.php
More file actions
145 lines (120 loc) · 3.45 KB
/
nhrst-smartsync-table.php
File metadata and controls
145 lines (120 loc) · 3.45 KB
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
<?php
/**
* Plugin Name: NHR SmartSync Table by Nazmul Hasan Robin
* Plugin URI: https://profiles.wordpress.org/nhrrob/nhrst-smartsync-table/
* Description: A WordPress plugin to fetch data from a remote API, display it via a custom block, and manage it in the admin area.
* Author: Nazmul Hasan Robin
* Author URI: https://profiles.wordpress.org/nhrrob/
* Version: 1.0.0
* Requires at least: 6.0
* Requires PHP: 7.4
* Text Domain: nhrst-smartsync-table
* Domain Path: /languages
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
require_once __DIR__ . '/vendor/autoload.php';
/**
* The main plugin class
*/
final class Nhrst_Smartsync_Table {
use Nhrst\SmartsyncTable\Traits\GlobalTrait;
/**
* Plugin version
*
* @var string
*/
const nhrst_version = '1.0.0';
/**
* Class construcotr
*/
private function __construct() {
$this->define_constants();
register_activation_hook( __FILE__, [ $this, 'activate' ] );
add_action( 'plugins_loaded', [ $this, 'init_plugin' ] );
add_action('init', [$this, 'load_textdomain']);
}
/**
* Initialize a singleton instance
*
* @return \Nhrst_Smartsync_Table
*/
public static function init() {
static $instance = false;
if ( ! $instance ) {
$instance = new self();
}
return $instance;
}
/**
* Define the required plugin constants
*
* @return void
*/
public function define_constants() {
define( 'NHRST_VERSION', self::nhrst_version );
define( 'NHRST_FILE', __FILE__ );
define( 'NHRST_PATH', __DIR__ );
define( 'NHRST_URL', plugins_url( '', NHRST_FILE ) );
define( 'NHRST_ASSETS', NHRST_URL . '/assets' );
define( 'NHRST_PLUGIN_DIR', plugin_dir_path( NHRST_FILE ) );
define( 'NHRST_INCLUDES_PATH', NHRST_PATH . '/includes' );
define( 'NHRST_VIEWS_PATH', NHRST_INCLUDES_PATH . '/views' );
}
/**
* Initialize the plugin
*
* @return void
*/
public function init_plugin() {
new Nhrst\SmartsyncTable\Assets();
$ajaxObj = new Nhrst\SmartsyncTable\Ajax();
$apiObj = new Nhrst\SmartsyncTable\Api();
$cliObj = new Nhrst\SmartsyncTable\Cli();
$blocksObj = new Nhrst\SmartsyncTable\Blocks();
$frontendObj = new Nhrst\SmartsyncTable\Frontend();
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
$ajaxObj->init();
}
if ( is_admin() ) {
new Nhrst\SmartsyncTable\Admin();
} else {
$frontendObj->init();
}
$apiObj->init();
$cliObj->init();
$blocksObj->init();
}
/**
* Do stuff upon plugin activation
*
* @return void
*/
public function activate() {
$installer = new Nhrst\SmartsyncTable\Installer();
$installer->run();
}
/**
* Load textdomain
*
* @return void
*/
public function load_textdomain() {
load_plugin_textdomain('nhrst-smartsync-table', false, dirname(plugin_basename(__FILE__)) . '/languages/');
}
}
/**
* Initializes the main plugin
*
* @return \Nhrst_Smartsync_Table
*/
function nhrst_smartsync_table() {
return Nhrst_Smartsync_Table::init();
}
// Call the plugin
nhrst_smartsync_table();
// Dispatch actions
Nhrst\SmartsyncTable\Admin::dispatch_actions();