| Server IP : 172.67.187.206 / Your IP : 172.71.28.156 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Inetpub/www/training/wp-content/themes/flatsome/inc/builder/shortcodes/commons/ |
Upload File : |
<?php
return array(
'type' => 'group',
'heading' => __( 'Slider' ),
'conditions' => 'type === "slider" || type === "slider-full"',
'options' => array(
'slider_nav_style' => array(
'type' => 'select',
'heading' => "Nav Style",
'default' => 'reveal',
'options' => require( __DIR__ . '/../values/slider-nav-styles.php' )
),
'slider_nav_color' => array(
'type' => 'select',
'heading' => "Nav Color",
'default' => '',
'options' => array(
'light' => 'Light',
'' => 'Dark',
)
),
'slider_nav_position' => array(
'type' => 'select',
'heading' => "Nav Position",
'conditions' => 'slider_nav_style !== "reveal"',
'default' => 'inside',
'options' => array(
'inside' => 'Inside',
'outside' => 'Outside',
)
),
'slider_bullets' => array(
'type' => 'select',
'heading' => "Bullets",
'default' => '',
'options' => array(
'' => 'Disable',
'true' => 'Enable',
)
),
'auto_slide' => array(
'type' => 'select',
'heading' => 'Auto Slide',
'default' => '',
'options' => array(
'' => 'Disabled',
'2000' => '2 sec.',
'3000' => '3 sec.',
'4000' => '4 sec.',
'5000' => '5 sec.',
'6000' => '6 sec.',
'7000' => '7 sec.',
)
),
'infinitive' => array(
'type' => 'select',
'heading' => "Infinitive",
'default' => '',
'options' => array(
'false' => 'Disable',
'' => 'Enable',
),
),
)
);