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:
<?php
function eventpost_timeline_block_init() {
$dir_path = EventPost()->plugin_path;
$dir = dirname( __DIR__ );
wp_register_script('event-post-timeline', plugins_url('/build/timeline/event-timeline.js', $dir), ['jquery'], false, true);
\register_block_type( $dir_path . '/build/timeline', array(
'render_callback' => array(EventPost()->Shortcodes, 'shortcode_timeline'),
'script' => 'event-post-timeline',
));
}
add_action( 'init', 'eventpost_timeline_block_init' );