-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.php
93 lines (84 loc) · 2.59 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
<?php
/**
* Plugin Name: IMG Carousel Block
* Plugin URI: https://github.com/imagewize/carousel-block
* Description: A responsive carousel slider block for Gutenberg. Add any blocks to slides.
* Author URI: https://imagewize.com
* Version: 1.0.16
* Author: Imagewize
* Text Domain: img-cb
* License: GPL2+
* License URI: https://www.gnu.org/licenses/gpl-2.0.txt
*
* @package carousel-block
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Directory path of this plugin
*
* @var string
*/
define( 'CB_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
class Carousel_Slider_Block {
const VERSION = '1.0.16'; // Plugin version
/**
* Actions and filters.
*/
public static function register() {
add_action( 'init', ['Carousel_Slider_Block', 'register_blocks'] );
add_action( 'init', ['Carousel_Slider_Block', 'load_textdomain'] );
}
/**
* Registers the blocks and their assets.
*/
public static function register_blocks() {
register_block_type( CB_PLUGIN_DIR . '/build/carousel', [
'render_callback' => ['Carousel_Slider_Block', 'render_carousel']
]);
register_block_type( CB_PLUGIN_DIR . '/build/slide' );
}
public static function load_textdomain() {
load_plugin_textdomain(
'img-cb',
false,
dirname( plugin_basename( __FILE__ ) ) . '/languages'
);
}
/**
* The render callback to handle the block output.
*
* @param array $attributes Block attributes.
* @param string $content Block save content.
* @return string Rendered block content.
*/
public static function render_carousel( $attributes, $content ) {
if ( ! is_admin() ) {
wp_enqueue_style(
'carousel-block-slick-style',
plugins_url( '/vendor/slick/slick.min.css', __FILE__ ),
[],
self::VERSION,
false
);
wp_enqueue_script(
'carousel-block-slick-script',
plugins_url( '/vendor/slick/slick.min.js', __FILE__ ),
['jquery'],
self::VERSION,
true
);
wp_enqueue_script(
'carousel-block-view-init',
plugins_url( '/vendor/slick/init.js', __FILE__ ),
[ 'jquery', 'carousel-block-slick-script' ],
self::VERSION,
true
);
}
return $content;
}
}
// Register the plugin
Carousel_Slider_Block::register();