Current File : /home/kelaby89/abl.academy/wp-content/themes/eduma/inc/admin/customizer-sections/event-archive.php |
<?php
/**
* Section Archive
*
* @package Eduma
*/
thim_customizer()->add_section(
array(
'id' => 'event_archive',
'panel' => 'event',
'title' => esc_html__( 'Archive Pages', 'eduma' ),
'priority' => 10,
)
);
thim_customizer()->add_field(
array(
'id' => 'thim_event_cate_layout',
'type' => 'radio-image',
'label' => esc_html__( 'Layout', 'eduma' ),
'tooltip' => esc_html__( 'Allows you to choose a layout for all events archive pages.', 'eduma' ),
'section' => 'event_archive',
'priority' => 12,
'default' => 'sidebar-right',
'choices' => array(
'sidebar-left' => THIM_URI . 'images/layout/sidebar-left.jpg',
'full-content' => THIM_URI . 'images/layout/body-full.jpg',
'sidebar-right' => THIM_URI . 'images/layout/sidebar-right.jpg',
),
'wrapper_attrs' => array(
'class' => '{default_class} thim-col-3'
)
)
);
// Enable or disable breadcrumbs
thim_customizer()->add_field(
array(
'id' => 'thim_event_cate_hide_breadcrumbs',
'type' => 'switch',
'label' => esc_html__( 'Hide Breadcrumbs?', 'eduma' ),
'tooltip' => esc_html__( 'Check this box to hide/show breadcrumbs.', 'eduma' ),
'section' => 'event_archive',
'default' => false,
'priority' => 15,
'choices' => array(
true => esc_html__( 'On', 'eduma' ),
false => esc_html__( 'Off', 'eduma' ),
),
)
);
// Enable or disable title
thim_customizer()->add_field(
array(
'id' => 'thim_event_cate_hide_title',
'type' => 'switch',
'label' => esc_html__( 'Hide Title', 'eduma' ),
'tooltip' => esc_html__( 'Check this box to hide/show title.', 'eduma' ),
'section' => 'event_archive',
'default' => false,
'priority' => 18,
'choices' => array(
true => esc_html__( 'On', 'eduma' ),
false => esc_html__( 'Off', 'eduma' ),
),
)
);
thim_customizer()->add_field(
array(
'type' => 'text',
'id' => 'thim_event_cate_sub_title',
'label' => esc_html__( 'Sub Heading', 'eduma' ),
'tooltip' => esc_html__( 'Allows you can setup sub heading.', 'eduma' ),
'section' => 'event_archive',
'priority' => 25,
)
);
thim_customizer()->add_field(
array(
'type' => 'image',
'id' => 'thim_event_cate_top_image',
'label' => esc_html__( 'Top Image', 'eduma' ),
'priority' => 30,
'transport' => 'postMessage',
'section' => 'event_archive',
'default' => THIM_URI . "images/bg-page.jpg",
)
);
// Page Title Background Color
thim_customizer()->add_field(
array(
'id' => 'thim_event_cate_bg_color',
'type' => 'color',
'label' => esc_html__( 'Background Color', 'eduma' ),
'tooltip' => esc_html__( 'If you do not use background image, then can use background color for page title on heading top. ', 'eduma' ),
'section' => 'event_archive',
'default' => 'rgba(0,0,0,0.5)',
'priority' => 35,
'choices' => array( 'alpha' => true ),
'transport' => 'postMessage',
'js_vars' => array(
array(
'choice' => 'color',
'element' => '.top_site_main>.overlay-top-header',
'property' => 'background',
)
)
)
);
thim_customizer()->add_field(
array(
'id' => 'thim_event_cate_title_color',
'type' => 'color',
'label' => esc_html__( 'Title Color', 'eduma' ),
'tooltip' => esc_html__( 'Allows you can select a color make text color for title.', 'eduma' ),
'section' => 'event_archive',
'default' => '#ffffff',
'priority' => 40,
'choices' => array( 'alpha' => true ),
'transport' => 'postMessage',
'js_vars' => array(
array(
'choice' => 'color',
'element' => '.top_site_main h1, .top_site_main h2',
'property' => 'color',
)
)
)
);
thim_customizer()->add_field(
array(
'id' => 'thim_event_cate_sub_title_color',
'type' => 'color',
'label' => esc_html__( 'Sub Title Color', 'eduma' ),
'tooltip' => esc_html__( 'Allows you can select a color make sub title color page title.', 'eduma' ),
'section' => 'event_archive',
'default' => '#999',
'priority' => 45,
'choices' => array( 'alpha' => true ),
'transport' => 'postMessage',
'js_vars' => array(
array(
'choice' => 'color',
'element' => '.top_site_main .banner-description',
'property' => 'color',
)
)
)
);
// Enable or disable button
thim_customizer()->add_field(
array(
'id' => 'thim_event_button_view_detail_event',
'type' => 'switch',
'label' => esc_html__( 'Button View Detail', 'eduma' ),
'tooltip' => esc_html__( 'Show button view detail single event.', 'eduma' ),
'section' => 'event_archive',
'default' => false,
'priority' => 48,
'choices' => array(
true => esc_html__( 'Show', 'eduma' ),
false => esc_html__( 'Hide', 'eduma' ),
),
)
);
// Enable or disable countdown
thim_customizer()->add_field(
array(
'id' => 'thim_event_countdown_archive_event',
'type' => 'switch',
'label' => esc_html__( 'Countdown Archive Event', 'eduma' ),
'tooltip' => esc_html__( 'Show countdown in archive event.', 'eduma' ),
'section' => 'event_archive',
'default' => false,
'priority' => 49,
'choices' => array(
true => esc_html__( 'Show', 'eduma' ),
false => esc_html__( 'Hide', 'eduma' ),
),
)
);
thim_customizer()->add_field(
array(
'id' => 'thim_event_change_order_tab',
'type' => 'sortable',
'label' => esc_html__( 'Change Order Tab', 'eduma' ),
'tooltip' => esc_html__( 'Allows you can show/hide and change the order of the tabs', 'eduma' ),
'section' => 'event_archive',
'default' => array(
'happening',
'upcoming',
'expired'
),
'priority' => 50,
'choices' => array(
'happening' => esc_html__( 'Happening', 'eduma' ),
'upcoming' => esc_html__( 'Upcoming', 'eduma' ),
'expired' => esc_html__( 'Expired', 'eduma' )
),
)
);