Server : LiteSpeed System : Linux webbox1.ncrdns.net 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : rahcos ( 1533) PHP Version : 8.4.24 Disable Function : NONE Directory : /home4/rahcos/.trash/wp-content/themes/hara/inc/vendors/redux-framework/config/ |
<?php
/**
* Redux Framework checkbox config.
* For full documentation, please visit: http://devs.redux.io/
*
* @package Redux Framework
*/
defined( 'ABSPATH' ) || exit;
/** Header Settings **/
Redux::set_section(
$opt_name,
array(
'icon' => 'zmdi zmdi-view-web',
'title' => esc_html__('Header', 'hara'),
'fields' => array(
array(
'id' => 'header_type',
'type' => 'select',
'title' => esc_html__('Select Header Layout', 'hara'),
'options' => hara_tbay_get_header_layouts(),
'default' => 'header_default'
),
array(
'id' => 'media-logo',
'type' => 'media',
'title' => esc_html__('Upload Logo', 'hara'),
'required' => array('header_type','=','header_default'),
'subtitle' => esc_html__('Image File (.png or .gif)', 'hara'),
),
array(
'id' => 'header_located_on_slider',
'type' => 'switch',
'title' => esc_html__('Header Located On Slider', 'hara'),
'subtitle' => esc_html__('Only home-page','hara'),
'default' => true,
),
)
)
);