| Server IP : 146.59.209.152 / Your IP : 216.73.216.25 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 Banner Settings", "konia"),
'fields' => array(
array(
'id' => 'banner_source_type',
'type' => 'button_set',
'title' => esc_html__('Banner Source Type', 'buildexo-plugin'),
'options' => array(
'd' => esc_html__('Default', 'buildexo-plugin'),
'e' => esc_html__('Elementor', 'buildexo-plugin'),
),
'default' => '',
),
array(
'id' => 'banner_elementor_template',
'type' => 'select',
'title' => __('Template', 'viral-buzz'),
'options' => 'posts',
'query_args' => [
'post_type' => ['elementor_library'],
'posts_per_page' => -1,
],
'dependency' => ['banner_source_type', '==', 'e'],
),
array(
'id' => 'banner_page_banner',
'type' => 'switcher',
'title' => esc_html__('Show Banner', 'buildexo-plugin'),
'default' => false,
'dependency' => ['banner_source_type', '==', 'd'],
),
array(
'id' => 'banner_banner_title',
'type' => 'text',
'title' => esc_html__('Banner Section Title', 'buildexo-plugin'),
'desc' => esc_html__('Enter the title to show in banner section', 'buildexo-plugin'),
'dependency' => array('banner_page_banner', '==', true),
),
array(
'id' => 'banner_page_background',
'type' => 'media',
'url' => true,
'title' => esc_html__('Background Image', 'buildexo-plugin'),
'desc' => esc_html__('Insert background image for banner', 'buildexo-plugin'),
'default' => '',
'dependency' => array('banner_page_banner', '==', true),
),
)
));