File: /var/www/lcc.kaunokolegija.lt/wp-content/plugins/widget-countdown/includes/gutenberg/gutenberg.php
<?php
class wpda_countdown_gutenberg{
private $plugin_url;
function __construct($plugin_url){
$this->plugin_url=$plugin_url;
$this->hooks_for_gutenberg();
}
/*###################### Hooks function for Gutenberg ##################*/
private function hooks_for_gutenberg(){
add_action( 'init', array($this,'guthenberg_init') );
}
/*###################### Guthenberg init function ##################*/
public function guthenberg_init(){
if ( ! function_exists( 'register_block_type' ) ) {
// Gutenberg is not active.
return;
}
register_block_type( 'wpdevart-countdown/countdown', array(
'style' => 'wpda_countdown_gutenberg_css',
'editor_script' => 'wpda_countdown_gutenberg_js',
) );
wp_add_inline_script(
'wpda_countdown_gutenberg_js',
sprintf('var wpda_countdown_gutenberg = { other_data: %s};',json_encode($this->other_dates(),JSON_PRETTY_PRINT)),
'before'
);
}
/*###################### Other dates function ##################*/
private function other_dates(){
$array=array('icon_src'=>$this->plugin_url."images/icon.svg","content_icon"=>$this->plugin_url."images/icon.png");
return $array;
}
}