File: /home/parhudrw/emenu.anqa.it/wp-content/themes/ticrou/includes/resource/options/footer_setting.php
<?php
return array(
'title' => esc_html__( 'Footer Setting', 'ticrou' ),
'id' => 'footer_setting',
'desc' => '',
'subsection' => false,
'fields' => array(
array(
'id' => 'footer_source_type',
'type' => 'button_set',
'title' => esc_html__( 'Footer Source Type', 'ticrou' ),
'options' => array(
'd' => esc_html__( 'Default', 'ticrou' ),
'e' => esc_html__( 'Elementor', 'ticrou' ),
),
'default' => 'd',
),
array(
'id' => 'footer_elementor_template',
'type' => 'select',
'title' => __( 'Template', 'ticrou' ),
'data' => 'posts',
'args' => [
'post_type' => [ 'elementor_library' ],
'posts_per_page' => -1
],
'required' => [ 'footer_source_type', '=', 'e' ],
),
array(
'id' => 'footer_style_section_start',
'type' => 'section',
'indent' => true,
'title' => esc_html__( 'Footer Settings', 'ticrou' ),
'required' => array( 'footer_source_type', '=', 'd' ),
),
array(
'id' => 'footer_style_settings',
'type' => 'image_select',
'title' => esc_html__( 'Choose Footer Styles', 'ticrou' ),
'subtitle' => esc_html__( 'Choose Footer Styles', 'ticrou' ),
'options' => array(
'footer_v1' => array(
'alt' => esc_html__( 'Footer Style 1', 'ticrou' ),
'img' => get_template_directory_uri() . '/assets/images/redux/footer/footer_v1.png',
),
'footer_v2' => array(
'alt' => esc_html__( 'Footer Style 2', 'ticrou' ),
'img' => get_template_directory_uri() . '/assets/images/redux/footer/footer_v2.png',
),
),
'required' => array( 'footer_source_type', '=', 'd' ),
'default' => 'footer_v2',
),
/***********************************************************************
Footer Version 1 Start
************************************************************************/
array(
'id' => 'footer_v1_settings_section_start',
'type' => 'section',
'indent' => true,
'title' => esc_html__( 'Footer Style One Settings', 'ticrou' ),
'required' => array( 'footer_style_settings', '=', 'footer_v1' ),
),
array(
'id' => 'footer_v1_copyright_text',
'type' => 'textarea',
'title' => __( 'Copyright Text', 'ticrou' ),
'required' => array( 'footer_style_settings', '=', 'footer_v1' ),
),
/***********************************************************************
Footer Version 2 Start
************************************************************************/
array(
'id' => 'footer_v2_settings_section_start',
'type' => 'section',
'indent' => true,
'title' => esc_html__( 'Footer Style Two Settings', 'ticrou' ),
'required' => array( 'footer_style_settings', '=', 'footer_v2' ),
),
array(
'id' => 'footer_v2_copyright_text',
'type' => 'textarea',
'title' => __( 'Copyright Text', 'ticrou' ),
'required' => array( 'footer_style_settings', '=', 'footer_v2' ),
),
array(
'id' => 'footer_default_ed',
'type' => 'section',
'indent' => false,
'required' => [ 'footer_source_type', '=', 'd' ],
),
),
);