-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·205 lines (176 loc) · 4.8 KB
/
index.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
<?php //@codingStandardsIgnoreLine
/**
* Snippets Block
*
* @package SentidoWeb/Blocks/Snippet
*
* Plugin Name: Snippets Block
* Plugin URI: https://github.com/displaynone/gutenberg-snippet
* Description: Allows to add snippets blocks to your content: Javascript, CSS, HTML...
* Author: Luis Sacristán
* Author URI: https://sentidoweb.com/
* Version: 1.3.0
* License: GPL2+
* License URI: https://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: sw-snippet
* Domain Path: /languages
*/
/**
* Copyright (C) 2019 Luis Sacristán
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 3, as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
namespace SentidoWeb\Blocks\Snippet;
// Abort if this file is called directly.
if ( ! defined( 'WPINC' ) ) {
die;
}
// Constants.
define( 'SENTIDOWEB_SNIPPET_BLOCK_ROOT', __FILE__ );
define( 'SENTIDOWEB_SNIPPET_BLOCK_DIR', __DIR__ );
define( 'SENTIDOWEB_SNIPPET_BLOCK_PREFIX', 'snippet_block' );
require __DIR__ . '/includes/class-autoloader.php';
use SentidoWeb\Blocks\Snippet\Blocks\Main as MainBlock;
/**
* The main loader for this plugin
*/
class Main {
/**
* Run all of the plugin functions.
*
* @since 1.0.0
*/
public function run() {
/**
* Load Text Domain
*/
load_plugin_textdomain( 'snippet-block', false, SENTIDOWEB_SNIPPET_BLOCK_ROOT . '\languages' );
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_block_editor_assets' ) );
add_action( 'enqueue_block_assets', array( $this, 'enqueue_block_assets' ) );
/**
* Load Classes
*
* Load all the other classes that this plugin needs to run.
*/
$this->includes();
}
/**
* Block Assets.
*
* Assets that load on on the Gutenberg 'Save' and Admin view. If you want
* certain assets to only load on the front end, wrap them in a `is_admin` conditional.
*
* @since 1.0.0
*/
public function enqueue_block_editor_assets() {
$scripts = 'assets/js/blocks.js';
$styles = 'assets/css/blocks.css';
$this->enqueue_highlight();
$blocks_script = ! defined( 'SW_BUNDLE_SCRIPT_BASE' ) ?
plugins_url( $scripts, __FILE__ ) :
SW_BUNDLE_SCRIPT_BASE . '/blocks.js';
// Enqueue Styles.
wp_enqueue_style(
'snippet-block-block',
plugins_url( $styles, __FILE__ ),
[],
filemtime( plugin_dir_path( __FILE__ ) . $styles )
);
wp_enqueue_script(
'snippet-block-block',
$blocks_script,
[
'wp-blocks',
'wp-data',
'wp-edit-post',
'wp-element',
'wp-i18n',
],
filemtime( plugin_dir_path( __FILE__ ) . $scripts ),
true
);
wp_set_script_translations( 'snippet-block-block', 'sw-snippet', plugin_dir_path( __FILE__ ) . 'languages' );
}
/**
* Loads frontend and backend scripts
*/
public function enqueue_block_assets() {
$scripts = 'assets/js/frontend.js';
$styles = 'assets/css/blocks.css';
$this->enqueue_highlight();
$plugin_version = $this->get_plugin_version();
wp_enqueue_script(
'snippet-block-block',
plugins_url( $scripts, __FILE__ ),
[],
$plugin_version,
true
);
wp_enqueue_style(
'snippet-block-block',
plugins_url( $styles, __FILE__ ),
[],
$plugin_version
);
}
/**
* Enqueues highlight.js
*/
public function enqueue_highlight() {
$hightlight_js = 'node_modules/highlightjs/highlight.pack.min.js';
$hightlight_css = 'node_modules/highlightjs/styles/androidstudio.css';
wp_enqueue_script(
'sw-hightlight',
plugins_url( $hightlight_js, __FILE__ ),
[],
'9.15.6',
true
);
wp_enqueue_style(
'sw-hightlight',
plugins_url( $hightlight_css, __FILE__ ),
[],
'9.15.6'
);
}
/**
* Include Classes
*/
public function includes() {
// Instantiate Classes.
$activator = new Activator();
$deactivator = new Deactivator();
$uninstaller = new Uninstaller();
// Run Code.
$activator->run(); // Run code on activation.
$deactivator->run(); // Run code on deactivation.
$uninstaller->run(); // Run code on uninstallation.
// PHP in Blocks.
new MainBlock();
}
/**
* Gets the plugin version
*
* @return {string}
*/
private function get_plugin_version() {
if ( ! function_exists( 'get_plugin_data' ) ) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
}
$plugin_data = \get_plugin_data( __FILE__ );
return $plugin_data['Version'];
}
}
$main = new Main();
$main->run();