| 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 Sidebar Settings", "buildexo-plugin"),
'fields' => array(
array(
'id' => 'sidebar_source_type',
'type' => 'button_set',
'title' => esc_html__('Sidebar Source Type', 'buildexo-plugin'),
'options' => array(
'd' => esc_html__('Default', 'buildexo-plugin'),
'e' => esc_html__('Elementor', 'buildexo-plugin'),
),
'default' => '',
),
array(
'id' => 'sidebar_elementor_template',
'type' => 'select',
'title' => __('Template', 'viral-buzz'),
'options' => 'posts',
'query_args' => [
'post_type' => ['elementor_library'],
'posts_per_page' => -1,
],
'dependency' => ['sidebar_source_type', '==', 'e'],
),
array(
'id' => 'sidebar_sidebar_layout',
'type' => 'image_select',
'title' => esc_html__('Layout', 'buildexo-plugin'),
'subtitle' => esc_html__('Select main content and sidebar alignment.', 'buildexo-plugin'),
'options' => array(
'left' => get_template_directory_uri() . '/assets/images/redux/2cl.png',
'full' => get_template_directory_uri() . '/assets/images/redux/1col.png',
'right' => get_template_directory_uri() . '/assets/images/redux/2cr.png',
),
'dependency' => ['sidebar_source_type', '==', 'd'],
),
array(
'id' => 'sidebar_page_sidebar',
'type' => 'select',
'chosen' => true,
'ajax' => true,
'multiple' => true,
'sortable' => true,
'title' => esc_html__('Sidebar', 'buildexo-plugin'),
'dependency' => array(
array('sidebar_sidebar_layout', 'any', 'left,right'),
array('sidebar_source_type', '==', 'd'),
),
'options' => 'sidebars',
),
)
));