Current File : /home/kelaby89/www/wp/wp-content/plugins/trx_addons/components/cpt/team/team-sc-gutenberg.php |
<?php
/**
* ThemeREX Addons Custom post type: Team (Gutenberg support)
*
* @package ThemeREX Addons
* @since v1.2
*/
// 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_team_editor_assets' ) ) {
add_action( 'enqueue_block_editor_assets', 'trx_addons_gutenberg_sc_team_editor_assets', TRX_ADDONS_GUTENBERG_EDITOR_BLOCK_REGISTRATION_PRIORITY );
function trx_addons_gutenberg_sc_team_editor_assets() {
if ( trx_addons_exists_gutenberg() && trx_addons_get_setting( 'allow_gutenberg_blocks' ) ) {
// Scripts
wp_enqueue_script(
'trx-addons-gutenberg-editor-block-team',
trx_addons_get_file_url( TRX_ADDONS_PLUGIN_CPT . 'team/gutenberg/team.gutenberg-editor.js' ),
trx_addons_block_editor_dependencis(),
filemtime( trx_addons_get_file_dir( TRX_ADDONS_PLUGIN_CPT . 'team/gutenberg/team.gutenberg-editor.js' ) ),
true
);
}
}
}
// Block register
if ( ! function_exists( 'trx_addons_sc_team_add_in_gutenberg' ) ) {
add_action( 'init', 'trx_addons_sc_team_add_in_gutenberg' );
function trx_addons_sc_team_add_in_gutenberg() {
if ( trx_addons_exists_gutenberg() && trx_addons_get_setting( 'allow_gutenberg_blocks' ) ) {
register_block_type(
'trx-addons/team',
apply_filters('trx_addons_gb_map', array(
'attributes' => array_merge(
array(
'type' => array(
'type' => 'string',
'default' => 'default',
),
'pagination' => array(
'type' => 'string',
'default' => 'none',
),
'no_margin' => array(
'type' => 'boolean',
'default' => false,
),
'no_links' => array(
'type' => 'boolean',
'default' => false,
),
'more_text' => array(
'type' => 'string',
'default' => esc_html__( 'Read more' ),
),
'post_type' => array(
'type' => 'string',
'default' => TRX_ADDONS_CPT_TEAM_PT,
),
'parent_post' => array(
'type' => 'string',
'default' => 'none',
),
'taxonomy' => array(
'type' => 'string',
'default' => TRX_ADDONS_CPT_TEAM_TAXONOMY,
),
'cat' => array(
'type' => 'string',
'default' => '0',
),
),
trx_addons_gutenberg_get_param_query(),
trx_addons_gutenberg_get_param_slider(),
! apply_filters( 'trx_addons_filter_add_title_param', true, 'trx-addons/team' ) ? array() : trx_addons_gutenberg_get_param_title(),
! apply_filters( 'trx_addons_filter_add_title_param', true, 'trx-addons/team' ) ? array() : trx_addons_gutenberg_get_param_button(),
trx_addons_gutenberg_get_param_id()
),
'render_callback' => 'trx_addons_gutenberg_sc_team_render_block',
), 'trx-addons/team' )
);
}
}
}
// Block render
if ( ! function_exists( 'trx_addons_gutenberg_sc_team_render_block' ) ) {
function trx_addons_gutenberg_sc_team_render_block( $attributes = array() ) {
return trx_addons_sc_team( $attributes );
}
}
// Return list of allowed layouts
if ( ! function_exists( 'trx_addons_gutenberg_sc_team_get_layouts' ) ) {
add_filter( 'trx_addons_filter_gutenberg_sc_layouts', 'trx_addons_gutenberg_sc_team_get_layouts', 10, 1 );
function trx_addons_gutenberg_sc_team_get_layouts( $array = array() ) {
$array['trx_sc_team'] = apply_filters( 'trx_addons_sc_type', trx_addons_components_get_allowed_layouts( 'cpt', 'team', 'sc' ), 'trx_sc_team' );
return $array;
}
}
// Add shortcode's specific vars to the JS storage
if ( ! function_exists( 'trx_addons_gutenberg_sc_team_params' ) ) {
add_filter( 'trx_addons_filter_gutenberg_sc_params', 'trx_addons_gutenberg_sc_team_params' );
function trx_addons_gutenberg_sc_team_params( $vars = array() ) {
if ( trx_addons_exists_gutenberg() && trx_addons_get_setting( 'allow_gutenberg_blocks' ) ) {
$vars['CPT_TEAM_PT'] = TRX_ADDONS_CPT_TEAM_PT;
$vars['CPT_TEAM_TAXONOMY'] = TRX_ADDONS_CPT_TEAM_TAXONOMY;
// If editor is active now
$is_edit_mode = trx_addons_is_post_edit();
// Team group (for backward compatibility)
$vars['sc_team_cat'] = ! $is_edit_mode ? array() : trx_addons_get_list_terms( false, TRX_ADDONS_CPT_TEAM_TAXONOMY );
$vars['sc_team_cat'][0] = trx_addons_get_not_selected_text( esc_html__( 'Select category', 'trx_addons' ) );
// Team-compatible post types (for a new way)
$vars['sc_team_posts_types'] = ! $is_edit_mode ? array() : trx_addons_get_list_team_posts_types();
// Team-compatible parent posts
$vars['sc_team_parent_post_types'] = array();
$vars['sc_team_parent_posts'] = array( '' => array() );
if ( $is_edit_mode ) {
foreach ( $vars['sc_team_posts_types'] as $key => $value ) {
$parent_post_type = apply_filters( 'trx_addons_filter_parent_post_type', '', $key );
$vars['sc_team_parent_post_types'][ $key ] = $parent_post_type;
if ( ! empty( $parent_post_type ) && ! isset( $vars['sc_team_parent_posts'][ $parent_post_type ] ) ) {
$vars['sc_team_parent_posts'][ $parent_post_type ] = trx_addons_get_list_posts( false, array(
'post_type' => $parent_post_type,
'orderby' => 'title',
'order' => 'ASC'
) );
}
}
}
return $vars;
}
}
}