Current File : /home/mdkeenpw/www/wp-content/plugins/trx_addons/components/shortcodes/table/table-sc-gutenberg.php
<?php
/**
 * Shortcode: Table (Gutenberg support)
 *
 * @package ThemeREX Addons
 * @since v1.3
 */

// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
	exit;
}


// Gutenberg Block
//------------------------------------------------------

// Add scripts and styles for the editor
if ( ! function_exists( 'trx_addons_gutenberg_sc_table_editor_assets' ) ) {
	add_action( 'enqueue_block_editor_assets', 'trx_addons_gutenberg_sc_table_editor_assets', TRX_ADDONS_GUTENBERG_EDITOR_BLOCK_REGISTRATION_PRIORITY );
	function trx_addons_gutenberg_sc_table_editor_assets() {
		if ( trx_addons_exists_gutenberg() && trx_addons_get_setting( 'allow_gutenberg_blocks' ) ) {
			// Scripts
			wp_enqueue_script(
				'trx-addons-gutenberg-editor-block-table',
				trx_addons_get_file_url( TRX_ADDONS_PLUGIN_SHORTCODES . 'table/gutenberg/table.gutenberg-editor.js' ),
				trx_addons_block_editor_dependencis(),
				filemtime( trx_addons_get_file_dir( TRX_ADDONS_PLUGIN_SHORTCODES . 'table/gutenberg/table.gutenberg-editor.js' ) ),
				true
			);
		}
	}
}

// Block register
if ( ! function_exists( 'trx_addons_sc_table_add_in_gutenberg' ) ) {
	add_action( 'init', 'trx_addons_sc_table_add_in_gutenberg' );
	function trx_addons_sc_table_add_in_gutenberg() {
		if ( trx_addons_exists_gutenberg() && trx_addons_get_setting( 'allow_gutenberg_blocks' ) ) {
			register_block_type(
				'trx-addons/table',
				apply_filters('trx_addons_gb_map', array(
					'attributes'      => array_merge(
						array(
							'type'               => array(
								'type'    => 'string',
								'default' => 'default',
							),
							'align'              => array(
								'type'    => 'string',
								'default' => 'none',
							),
							'width'              => array(
								'type'    => 'string',
								'default' => '100%',
							),
							'content'            => array(
								'type'    => 'string',
								'default' => '',
							),
							// Rerender
							'reload'             => array(
								'type'    => 'string',
								'default' => '',
							),
						),
						! apply_filters( 'trx_addons_filter_add_title_param', true, 'trx-addons/table' ) ? array() : trx_addons_gutenberg_get_param_title(),
						! apply_filters( 'trx_addons_filter_add_title_param', true, 'trx-addons/table' ) ? array() : trx_addons_gutenberg_get_param_button(),
						trx_addons_gutenberg_get_param_id()
					),
					'render_callback' => 'trx_addons_gutenberg_sc_table_render_block',
				), 'trx-addons/table' )
			);
		}
	}
}

// Block render
if ( ! function_exists( 'trx_addons_gutenberg_sc_table_render_block' ) ) {
	function trx_addons_gutenberg_sc_table_render_block( $attributes = array() ) {
		if ( ! empty( $attributes['content'] ) ) {
			return trx_addons_sc_table( $attributes );
		} else {
			return '<h4>' . esc_html__( 'Add content', 'trx_addons' ) . '</h4>';
		}
	}
}

// Return list of allowed layouts
if ( ! function_exists( 'trx_addons_gutenberg_sc_table_get_layouts' ) ) {
	add_filter( 'trx_addons_filter_gutenberg_sc_layouts', 'trx_addons_gutenberg_sc_table_get_layouts', 10, 1 );
	function trx_addons_gutenberg_sc_table_get_layouts( $array = array() ) {
		$array['sc_table'] = apply_filters( 'trx_addons_sc_type', trx_addons_components_get_allowed_layouts( 'sc', 'table' ), 'trx_sc_table' );
		return $array;
	}
}