/home/arranoyd/www/wp-content/themes/jevelin/framework-customizations/theme/options/titlebar.php
<?php if ( ! defined( 'FW' ) ) {
	die( 'Forbidden' );
}

$options = array(
	'titlebar' => array(
		'title'   => esc_html__( 'Titlebar', 'jevelin' ),
		'type'    => 'tab',
		'icon'	  => 'fa fa-phone',
		'options' => array(
			'titlebar-box' => array(
				'title'   => esc_html__( 'Titlebar Settings', 'jevelin' ),
				'type'    => 'box',
				'options' => array(


					'titlebar' => array(
						'type' => 'switch',
						'label' => esc_html__( 'Titlebar', 'jevelin' ),
						'desc' => esc_html__( 'Enable or disable titlebar', 'jevelin' ),
						'value' => 'on',
						'left-choice' => array(
							'value' => 'off',
							'label' => esc_html__('Off', 'jevelin'),
						),
						'right-choice' => array(
							'value' => 'on',
							'label' => esc_html__('On', 'jevelin'),
						),
					),

					'titlebar_layout' => array(
					    'type'  => 'radio',
					    'label' => esc_html__('Titlebar Layout', 'jevelin'),
					    'desc'  => esc_html__('Choose titlebar layout', 'jevelin'),
					    'choices' => array(
					        'side' => esc_html__( 'Sides', 'jevelin' ),
					        'center' => esc_html__( 'Center', 'jevelin' ),
					    ),
					    'value' => 'side',
					    'inline' => false,
					),

					'titlebar_height' => array(
					    'type'  => 'select',
					    'label' => esc_html__('Titlebar Height', 'jevelin'),
					    'desc'  => esc_html__('Choose titlebar height', 'jevelin'),
					    'choices' => array(
					    	'small' => esc_html__( 'Small', 'jevelin' ),
					        'medium' => esc_html__( 'Medium', 'jevelin' ),
					        'large' => esc_html__( 'Large', 'jevelin' ),
					    ),
					    'value' => 'medium',
					),

					'titlebar_background' => array(
						'label' => esc_html__( 'Titlebar Background Image', 'jevelin' ),
						'desc'  => esc_html__( 'Upload a background image for titlebar', 'jevelin' ),
						'type'  => 'upload'
					),

                    'titlebar_background_parallax' => array(
                        'type' => 'switch',
                        'label' => esc_html__( 'Parallax Background', 'jevelin' ),
                        'desc' => esc_html__( 'Enable or disable parallax background', 'jevelin' ),
                        'value' => 'off',
                        'left-choice' => array(
                            'value' => 'off',
                            'label' => esc_html__('Off', 'jevelin'),
                        ),
                        'right-choice' => array(
                            'value' => 'on',
                            'label' => esc_html__('On', 'jevelin'),
                        ),
                    ),

					'titlebar-background-color' => array(
					    'type'  => 'color-picker',
					    'value' => '#fbfbfb',
					    'label' => esc_html__('Titlebar Background Color', 'jevelin'),
					    'desc'  => esc_html__('Select titlebar background color', 'jevelin'),
					),

					'titlebar-title-color' => array(
					    'type'  => 'color-picker',
					    'label' => esc_html__('Titlebar Title Color', 'jevelin'),
					    'desc'  => esc_html__('Select titlebar title color', 'jevelin'),
					),

					'titlebar-breadcrumbs-color' => array(
					    'type'  => 'color-picker',
					    'label' => esc_html__('Titlebar Breadcrumbs Color', 'jevelin'),
					    'desc'  => esc_html__('Select titlebar breadcrumbs color', 'jevelin'),
					),

					'titlebar-home-title' => array(
						'type'  => 'text',
						'label' => esc_html__('Home Title', 'jevelin'),
						'desc'  => esc_html__('Enter main title of home page', 'jevelin'),
						'value' => 'Home',
					),

					'titlebar-post-title' => array(
						'type'  => 'text',
						'label' => esc_html__('Post Title', 'jevelin'),
						'desc'  => esc_html__('Enter main title of post pages', 'jevelin'),
						'value' => 'Blog Post',
					),

					'titlebar-blog-woocommerce' => array(
						'type'  => 'text',
						'label' => esc_html__('WooCommerce Title', 'jevelin'),
						'desc'  => esc_html__('Enter main title of WooCommerce pages', 'jevelin'),
						'value' => 'Shop',
					),

					'titlebar-404-title' => array(
						'type'  => 'text',
						'label' => esc_html__('404 Title', 'jevelin'),
						'desc'  => esc_html__('Enter main title of 404 page', 'jevelin'),
						'value' => 'Page could not be found',
					),


				)
			),
		)
	)
);