| Server IP : 146.59.209.152 / Your IP : 216.73.216.152 Web Server : Apache System : Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : monpetu ( 144298) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/monpetu/www/leoreno.fr/wp-content/plugins/buildexo-plugin/inc/metaboxes/ |
Upload File : |
<?php
//
// Create a section
CSF::createSection($prefix, array(
'title' => esc_html__("Turner footer Settings", "buildexo-plugin"),
'fields' => array(
array(
'id' => 'footer_source_type',
'type' => 'button_set',
'title' => esc_html__('Footer Source Type', 'buildexo-plugin'),
'options' => array(
'd' => esc_html__('Default', 'buildexo-plugin'),
'e' => esc_html__('Elementor', 'buildexo-plugin'),
),
'default' => '',
),
array(
'id' => 'footer_elementor_template',
'type' => 'select',
'title' => __('Template', 'viral-buzz'),
'options' => 'posts',
'query_args' => [
'post_type' => ['elementor_library'],
'posts_per_page' => -1,
'orderby' => 'title',
'order' => 'DESC'
],
'dependency' => ['footer_source_type', '==', 'e'],
),
array(
'id' => 'footer_style_settings',
'type' => 'image_select',
'title' => esc_html__('Choose Footer Styles', 'buildexo-plugin'),
'options' => array(
'footer_v1' => get_template_directory_uri() . '/assets/images/redux/footer/footer1.png',
'footer_v2' => get_template_directory_uri() . '/assets/images/redux/footer/footer2.png',
'footer_v3' => get_template_directory_uri() . '/assets/images/redux/footer/footer3.png',
),
'dependency' => array(array('footer_source_type', '==', 'd')),
),
)
));