-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathblock.php
73 lines (68 loc) · 1.5 KB
/
block.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
<?php
/**
* The Gutenberg block for Pym.js embeds
*
* @package pym-embeds
*/
/**
* Registers all block assets so that they can be enqueued through Gutenberg in
* the corresponding context.
*
* @see https://wordpress.org/gutenberg/handbook/blocks/writing-your-first-block-type/#enqueuing-block-scripts
*/
function pym_block_init() {
if ( ! function_exists( 'register_block_type' ) ) {
// Gutenberg is not active.
return false;
}
$dir = dirname( dirname( __FILE__ ) );
$block_js = 'js/block.js';
wp_register_script(
'pym-block-editor',
plugins_url( $block_js, dirname( __FILE__ ) ),
array(
'wp-blocks',
'wp-i18n',
'wp-element',
'wp-editor',
'wp-components',
),
filemtime( "$dir/$block_js" )
);
$editor_css = 'css/editor.css';
wp_register_style(
'pym-block-editor',
plugins_url( $editor_css, dirname( __FILE__ ) ),
array(
'wp-blocks',
),
filemtime( "$dir/$editor_css" )
);
register_block_type( 'pym-shortcode/pym', array(
'attributes' => array(
'src' => array(
'type' => 'string',
),
'pymsrc' => array(
'type' => 'string',
),
'pymoptions' => array(
'type' => 'string',
),
'id' => array(
'type' => 'string',
),
'className' => array(
'type' => 'string',
),
'align' => array(
'type' => 'string',
),
),
'editor_script' => 'pym-block-editor',
'editor_style' => 'pym-block-editor',
'style' => 'pym-block',
'render_callback' => 'pym_shortcode',
) );
}
add_action( 'init', 'pym_block_init' );