<?php

/**
 * Options to inject in header.
 */
// File Security Check
if (!defined('ABSPATH')) {
    exit;
}
$new_options = array();
$new_options[] = array('name' => _x('WooCommerce shopping cart', 'theme-options', 'the7mk2'), 'type' => 'block');
presscore_options_apply_template($new_options, 'basic-header-element', 'header-elements-woocommerce_cart', array('caption' => array('divider' => false)));
$new_options[] = array('type' => 'divider');
$new_options['header-elements-woocommerce_cart-show_sub_cart'] = array('id' => 'header-elements-woocommerce_cart-show_sub_cart', 'name' => _x('Show drop down cart', 'theme-options', 'the7mk2'), 'type' => 'checkbox', 'std' => '1');
$new_options[] = array('type' => 'divider');
$new_options['header-elements-woocommerce_cart-show_subtotal'] = array('id' => 'header-elements-woocommerce_cart-show_subtotal', 'name' => _x('Show cart subtotal', 'theme-options', 'the7mk2'), 'type' => 'checkbox', 'std' => '0');
$new_options[] = array('type' => 'divider');
$new_options['header-elements-woocommerce_cart-show_counter'] = array('id' => 'header-elements-woocommerce_cart-show_counter', 'name' => _x('Show products counter', 'theme-options', 'the7mk2'), 'type' => 'radio', 'std' => 'allways', 'show_hide' => array('if_not_empty' => true, 'allways' => true), 'options' => array('never' => _x('Never', 'theme-options', 'the7mk2'), 'if_not_empty' => _x('If not empty', 'theme-options', 'the7mk2'), 'allways' => _x('Allways', 'theme-options', 'the7mk2')));
$new_options[] = array('type' => 'js_hide_begin');
$new_options['header-elements-woocommerce_cart-counter-style'] = array('id' => 'header-elements-woocommerce_cart-counter-style', 'name' => _x('Products counter style', 'theme-options', 'the7mk2'), 'type' => 'radio', 'std' => 'round', 'options' => array('round' => _x('Round', 'theme-options', 'the7mk2'), 'rectangular' => _x('Rectangular', 'theme-options', 'the7mk2')));
$new_options['header-elements-woocommerce_cart-counter-color'] = array('id' => 'header-elements-woocommerce_cart-counter-color', 'name' => _x('Products counter color', 'theme-options', 'the7mk2'), 'type' => 'color', 'std' => '#ffffff');
$new_options['header-elements-woocommerce_cart-counter-bg'] = array('id' => 'header-elements-woocommerce_cart-counter-bg', 'name' => _x('Products counter background', 'theme-options', 'the7mk2'), 'type' => 'images', 'class' => 'small', 'std' => 'accent', 'options' => array('accent' => array('title' => _x('Accent', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/color-accent.gif'), 'color' => array('title' => _x('Custom color', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/color-custom.gif'), 'gradient' => array('title' => _x('Custom gradient', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/color-custom-gradient.gif')));
$new_options['header-elements-woocommerce_cart-counter-bg-color'] = array('id' => 'header-elements-woocommerce_cart-counter-bg-color', 'name' => _x('Color', 'theme-options', 'the7mk2'), 'type' => 'color', 'std' => '#000000', 'dependency' => array(array(array('field' => 'header-elements-woocommerce_cart-counter-bg', 'operator' => '==', 'value' => 'color'))));
$new_options['header-elements-woocommerce_cart-counter-bg-gradient'] = array('id' => 'header-elements-woocommerce_cart-counter-bg-gradient', 'name' => _x('Gradient', 'theme-options', 'the7mk2'), 'type' => 'gradient', 'std' => array('#ffffff', '#000000'), 'dependency' => array(array(array('field' => 'header-elements-woocommerce_cart-counter-bg', 'operator' => '==', 'value' => 'gradient'))));
$new_options[] = array('type' => 'js_hide_end');
// add new options
if (isset($options)) {
    $options = dt_array_push_after($options, $new_options, 'header-before-elements-placeholder');
}
// cleanup
unset($new_options);
<?php

/**
 * Options to inject in header.
 */
// File Security Check
if (!defined('ABSPATH')) {
    exit;
}
$new_options = array();
$new_options[] = array('name' => _x('WPML language switcher', 'theme-options', 'the7mk2'), 'type' => 'block');
presscore_options_apply_template($new_options, 'basic-header-element', 'header-elements-language', array('caption' => false, 'icon' => false));
// add new options
if (isset($options)) {
    $options = dt_array_push_after($options, $new_options, 'header-before-elements-placeholder');
}
// cleanup
unset($new_options);
$options[] = array("name" => _x('Decoration outline opacity', 'theme-options', 'the7mk2'), "id" => "general-content_boxes_decoration_outline_opacity", "std" => 100, "type" => "slider");
$options[] = array("type" => "js_hide_end");
$options[] = array("type" => "block_end");
/**
 * Categorization, sorting & pagination style.
 */
$options[] = array("name" => _x('Categorization, sorting & pagination style', 'theme-options', 'the7mk2'), "type" => "block_begin");
$options['general-filter_style'] = array('id' => 'general-filter_style', 'name' => _x('Style', 'theme-options', 'the7mk2'), 'type' => 'images', 'class' => 'small', 'std' => 'ios', 'options' => array('ios' => array('title' => _x('iOS', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-filter_style-ios.gif'), 'minimal' => array('title' => _x('Minimal', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-filter_style-minimal.gif'), 'material' => array('title' => _x('Material design', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-filter_style-material.gif')));
$options[] = array('type' => 'divider');
$options['general-filter-font-family'] = array('id' => 'general-filter-font-family', 'name' => _x('Font', 'theme-options', 'the7mk2'), 'type' => 'web_fonts', 'std' => 'Open Sans', 'fonts' => 'all');
$options['general-filter-font-size'] = array('id' => 'general-filter-font-size', 'name' => _x('Font size', 'theme-options', 'the7mk2'), 'type' => 'slider', 'sanitize' => 'font_size', 'std' => 16, 'options' => array('min' => 9, 'max' => 120));
$options['general-filter-line_height'] = array('id' => 'general-filter-line_height', 'name' => _x('Line height', 'theme-options', 'the7mk2'), 'type' => 'slider', 'std' => 20, 'options' => array('min' => 9, 'max' => 120));
$options['general-filter_ucase'] = array('id' => 'general-filter_ucase', 'name' => _x('Capitalize', 'theme-options', 'the7mk2'), 'type' => 'checkbox', 'std' => 0);
$options[] = array('type' => 'divider');
presscore_options_apply_template($options, 'indents', 'general-filter-padding', array('left' => array('std' => '5'), 'right' => array('std' => '5'), 'top' => array('std' => '5'), 'bottom' => array('std' => '5')));
presscore_options_apply_template($options, 'indents-margins', 'general-filter-margin', array('left' => array('std' => '5'), 'right' => array('std' => '5')));
$options[] = array("type" => "block_end");
/**
 * Text.
 */
$options[] = array("name" => _x('Text', 'theme-options', 'the7mk2'), "type" => "block_begin");
// colorpicker
$options[] = array("desc" => '', "name" => _x('Headers color', 'theme-options', 'the7mk2'), "id" => "content-headers_color", "std" => "#252525", "type" => "color");
// colorpicker
$options[] = array("desc" => '', "name" => _x('Text color', 'theme-options', 'the7mk2'), "id" => "content-primary_text_color", "std" => "#686868", "type" => "color");
$options[] = array("type" => "block_end");
/**
 * Color Accent.
 */
$options[] = array("name" => _x('Color Accent', 'theme-options', 'the7mk2'), "type" => "block_begin");
// radio
presscore_options_apply_template($options, 'mobile-header', 'header-mobile-second_switch', array('after' => array('name' => _x('Switch after', 'theme-options', 'the7mk2')), 'height' => false, 'layout' => array('type' => 'images', 'options' => array('left_right' => array('title' => _x('Left menu + right logo', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-secondswitch-layout-l-r.gif'), 'left_center' => array('title' => _x('Left menu + centered logo', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-secondswitch-layout-l-c.gif'), 'right_left' => array('title' => _x('Right menu + left logo', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-secondswitch-layout-r-l.gif'), 'right_center' => array('title' => _x('Right menu + centered logo', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-secondswitch-layout-r-c.gif')), 'class' => 'small', 'divider' => false)));
$options[] = array('name' => _x('Floating mobile navigation', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['header-mobile-floating_navigation'] = array('id' => 'header-mobile-floating_navigation', 'name' => _x('Floating mobile navigation', 'theme-options', 'the7mk2'), 'type' => 'images', 'std' => 'menu_icon', 'options' => array('disabled' => array('title' => _x('Disabled', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-floating_navigation-disabled.gif'), 'sticky' => array('title' => _x('Sticky mobile header', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-floating_navigation-sticky-header.gif'), 'menu_icon' => array('title' => _x('Floating menu icon', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-floating_navigation-icon.gif')), 'class' => 'small');
$options[] = array('name' => _x('Branding', 'theme-options', 'the7mk2'), 'type' => 'heading');
$options[] = array('name' => _x('Main', 'theme-options', 'the7mk2'), 'type' => 'block');
presscore_options_apply_template($options, 'logo', 'header');
$options[] = array('name' => _x('Transparent header', 'theme-options', 'the7mk2'), 'type' => 'block');
presscore_options_apply_template($options, 'logo', 'header-style-transparent');
$options[] = array('name' => _x('Menu icon / top line / side line', 'theme-options', 'the7mk2'), 'class' => 'branding-menu-icon-block', 'type' => 'block');
presscore_options_apply_template($options, 'logo', 'header-style-mixed');
$options[] = array('name' => _x('Floating navigation', 'theme-options', 'the7mk2'), 'class' => 'branding-floating-nav-block', 'type' => 'block');
presscore_options_apply_template($options, 'logo', 'header-style-floating');
$options[] = array('name' => _x('Mobile', 'theme-options', 'the7mk2'), 'type' => 'block');
presscore_options_apply_template($options, 'logo', 'header-style-mobile');
$options[] = array('name' => _x('Bottom bar', 'theme-options', 'the7mk2'), 'type' => 'block');
presscore_options_apply_template($options, 'logo', 'bottom_bar');
$options[] = array('name' => _x('Favicon', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['general-favicon'] = array('id' => 'general-favicon', 'name' => _x('Regular (16x16 px)', 'theme-options', 'the7mk2'), 'type' => 'upload', 'std' => '');
$options['general-favicon_hd'] = array('id' => 'general-favicon_hd', 'name' => _x('High-DPI (32x32 px)', 'theme-options', 'the7mk2'), 'type' => 'upload', 'std' => '');
$options[] = array('name' => _x('Copyright information', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['bottom_bar-copyrights'] = array('id' => 'bottom_bar-copyrights', 'name' => _x('Copyright information', 'theme-options', 'the7mk2'), 'type' => 'textarea', 'std' => false);
$options['bottom_bar-credits'] = array('id' => 'bottom_bar-credits', 'name' => _x('Give credits to Dream-Theme', 'theme-options', 'the7mk2'), 'type' => 'checkbox', 'std' => '1');
$options[] = array('name' => _x('Sidebar & Footer', 'theme-options', 'the7mk2'), 'type' => 'heading');
$options[] = array('name' => _x('Sidebar style', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['sidebar-visual_style'] = array('name' => _x('Sidebar style', 'theme-options', 'the7mk2'), 'id' => 'sidebar-visual_style', 'std' => 'with_dividers', 'type' => 'images', 'class' => 'small', 'options' => array('with_dividers' => array('title' => _x('Dividers', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/sidebar-visual_style-dividers.gif'), 'with_bg' => array('title' => _x('Background behind whole sidebar', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/sidebar-visual_style-background-behind-whole-sidebar.gif'), 'with_widgets_bg' => array('title' => _x('Background behind each widget', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/sidebar-visual_style-background-behind-each-widget.gif')));
$options[] = array('name' => _x('Footer style', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['footer-bg_color'] = array('name' => _x('Background color', 'theme-options', 'the7mk2'), 'id' => 'footer-bg_color', 'std' => '#1B1B1B', 'type' => 'color');
$options['footer-headers_color'] = array('name' => _x('Headers color', 'theme-options', 'the7mk2'), 'id' => 'footer-headers_color', 'std' => '#ffffff', 'type' => 'color');
$options['footer-primary_text_color'] = array('name' => _x('Content color', 'theme-options', 'the7mk2'), 'id' => 'footer-primary_text_color', 'std' => '#828282', 'type' => 'color');
$options[] = array('name' => _x('Footer layout', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['footer-layout'] = array('name' => _x('Layout', 'theme-options', 'the7mk2'), 'desc' => _x('E.g. "1/4+1/4+1/2"', 'theme-options', 'the7mk2'), 'id' => 'footer-layout', 'std' => '1/4+1/4+1/4+1/4', 'type' => 'text');
$options[] = array("type" => "divider");
$options[] = array("name" => _x("Slide-out mode", "theme-options", 'the7mk2'), "desc" => _x('"Slide-out mode" isn\'t compatible with transparent/semitransparent content area background.', "theme-options", 'the7mk2'), "id" => "footer-slide-out-mode", "std" => "0", 'type' => 'images', 'class' => 'small', 'options' => array('1' => array('title' => _x('Enabled', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/footer-slide-out-mode-enabled.gif'), '0' => array('title' => _x('Disabled', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/footer-slide-out-mode-disabled.gif')));
$options[] = array("type" => "js_hide_end");
$options[] = array("type" => "block_end");
///////////////////////
// Footer font color //
///////////////////////
$options[] = array("name" => _x('Footer font color', 'theme-options', 'the7mk2'), "type" => "block_begin");
$options[] = array("name" => _x('Headers color', 'theme-options', 'the7mk2'), "id" => "footer-headers_color", "std" => "#ffffff", "type" => "color");
$options[] = array("name" => _x('Content color', 'theme-options', 'the7mk2'), "id" => "footer-primary_text_color", "std" => "#828282", "type" => "color");
$options[] = array("type" => "block_end");
///////////////////
// Footer layout //
///////////////////
$options[] = array("name" => _x("Footer layout", "theme-options", 'the7mk2'), "type" => "block_begin");
presscore_options_apply_template($options, 'indents-v', 'footer-padding', array('top' => array('std' => '50'), 'bottom' => array('std' => '50')));
$options[] = array("type" => "divider");
$options[] = array("desc" => _x("E.g. 20 pixel padding will give you 40 pixel gap between columns.", "theme-options", 'the7mk2'), "name" => _x("Paddings between footer columns (px)", "theme-options", 'the7mk2'), "id" => "footer-paddings-columns", "std" => 44, "type" => "text", "class" => "mini", "sanitize" => "dimensions");
$options[] = array("type" => "divider");
$options[] = array("name" => _x("Layout", "theme-options", 'the7mk2'), "desc" => _x('E.g. "1/4+1/4+1/2"', "theme-options", 'the7mk2'), "id" => "footer-layout", "std" => "1/4+1/4+1/4+1/4", "type" => "text");
$options[] = array("type" => "divider");
$options[] = array("name" => _x("Collapse to one column after (px)", "theme-options", 'the7mk2'), "desc" => _x("Won't have any effect if responsiveness is disabled.", "theme-options", 'the7mk2'), "id" => "footer-collapse_after", "std" => 760, "type" => "text", "class" => "mini", "sanitize" => "dimensions");
$options[] = array("type" => "block_end");
////////////////
// Bootom bar //
////////////////
$options[] = array("name" => _x("Bottom bar", "theme-options", 'the7mk2'), "type" => "heading");
//////////////////////
// Bottom bar style //
//////////////////////
$options[] = array("name" => _x("Bottom bar style", "theme-options", 'the7mk2'), "type" => "block_begin");
$options[] = array('type' => 'divider');
$options['header-floating_navigation-style'] = array('id' => 'header-floating_navigation-style', 'name' => _x('Effect', 'theme-options', 'the7mk2'), 'type' => 'images', 'class' => 'small', 'std' => 'fade', 'options' => array('fade' => array('title' => _x('Fade on scroll', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-floatingnavigationstyle-fade.gif'), 'slide' => array('title' => _x('Slide on scroll', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-floatingnavigationstyle-slide.gif'), 'sticky' => array('title' => _x('Sticky', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-floatingnavigationstyle-sticky.gif')));
$options['header-floating_navigation-show_after'] = array('id' => 'header-floating_navigation-show_after', 'name' => _x('Show after scrolling (px)', 'theme-options', 'the7mk2'), 'type' => 'text', 'std' => '150', 'sanitize' => 'slider');
$options['header-floating_navigation-height'] = array('id' => 'header-floating_navigation-height', 'name' => _x('Height (px)', 'theme-options', 'the7mk2'), 'type' => 'text', 'std' => '100', 'sanitize' => 'slider');
$options['header-floating_navigation-bg-color'] = array('id' => 'header-floating_navigation-bg-color', 'name' => _x('Background color', 'theme-options', 'the7mk2'), 'type' => 'color', 'std' => '#ffffff');
$options['header-floating_navigation-bg-opacity'] = array('id' => 'header-floating_navigation-bg-opacity', 'name' => _x('Background opacity', 'theme-options', 'the7mk2'), 'type' => 'slider', 'std' => 90);
$options['header-floating_navigation-decoration'] = array('id' => 'header-floating_navigation-decoration', 'name' => _x('Decoration', 'theme-options', 'the7mk2'), 'type' => 'images', 'class' => 'small', 'std' => 'disabled', 'options' => array('disabled' => array('title' => _x('Disabled', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-floatingnavigation-decoration-disabled.gif'), 'shadow' => array('title' => _x('Shadow', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-floatingnavigation-decoration-shadow.gif'), 'line' => array('title' => _x('Line', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-floatingnavigation-decoration-line.gif')));
$options['header-floating_navigation-decoration-color'] = array('id' => 'header-floating_navigation-decoration-color', 'name' => _x('Line color', 'theme-options', 'the7mk2'), 'type' => 'color', 'std' => '#ffffff', 'dependency' => array(array(array('field' => 'header-floating_navigation-decoration', 'operator' => '==', 'value' => 'line'))));
$options['header-floating_navigation-decoration-opacity'] = array('id' => 'header-floating_navigation-decoration-opacity', 'name' => _x('Line opacity', 'theme-options', 'the7mk2'), 'type' => 'slider', 'std' => 100, 'dependency' => array(array(array('field' => 'header-floating_navigation-decoration', 'operator' => '==', 'value' => 'line'))));
$options[] = array('type' => 'js_hide_end');
$options[] = array('name' => _x('Mobile header', 'theme-options', 'the7mk2'), 'type' => 'heading');
$options[] = array('name' => _x('First header switch point (tablet)', 'theme-options', 'the7mk2'), 'type' => 'block');
presscore_options_apply_template($options, 'mobile-header', 'header-mobile-first_switch', array('after' => array('std' => '1024', 'desc' => _x('To skip this switch point set the same value as for the second (phone) point.', 'theme-options', 'the7mk2')), 'height' => array('std' => '150'), 'layout' => array('type' => 'images', 'options' => array('left_right' => array('title' => _x('Left menu + right logo', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-firstswitch-layout-l-r.gif'), 'left_center' => array('title' => _x('Left menu + centered logo', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-firstswitch-layout-l-c.gif'), 'right_left' => array('title' => _x('Right menu + left logo', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-firstswitch-layout-r-l.gif'), 'right_center' => array('title' => _x('Right menu + centered logo', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-firstswitch-layout-r-c.gif')), 'class' => 'small')));
$options[] = array('name' => _x('Second header switch point (phone)', 'theme-options', 'the7mk2'), 'type' => 'block');
presscore_options_apply_template($options, 'mobile-header', 'header-mobile-second_switch', array('after' => array('std' => '760', 'desc' => _x('To skip this switch point set it to 0.', 'theme-options', 'the7mk2')), 'height' => array('std' => '100'), 'layout' => array('type' => 'images', 'options' => array('left_right' => array('title' => _x('Left menu + right logo', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-secondswitch-layout-l-r.gif'), 'left_center' => array('title' => _x('Left menu + centered logo', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-secondswitch-layout-l-c.gif'), 'right_left' => array('title' => _x('Right menu + left logo', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-secondswitch-layout-r-l.gif'), 'right_center' => array('title' => _x('Right menu + centered logo', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-secondswitch-layout-r-c.gif')), 'class' => 'small')));
$options[] = array('name' => _x('Floating mobile navigation', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['header-mobile-floating_navigation'] = array('id' => 'header-mobile-floating_navigation', 'name' => _x('Floating mobile navigation', 'theme-options', 'the7mk2'), 'type' => 'images', 'std' => 'menu_icon', 'options' => array('disabled' => array('title' => _x('Disabled', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-floating_navigation-disabled.gif'), 'sticky' => array('title' => _x('Sticky mobile header', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-floating_navigation-sticky-header.gif'), 'menu_icon' => array('title' => _x('Floating menu icon', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-floating_navigation-icon.gif')), 'class' => 'small');
$options[] = array('name' => _x('Mobile menu font', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['header-mobile-menu-font-family'] = array('id' => 'header-mobile-menu-font-family', 'name' => _x('Menu font', 'theme-options', 'the7mk2'), 'type' => 'web_fonts', 'std' => 'Open Sans', 'fonts' => 'all');
$options['header-mobile-menu-font-size'] = array('id' => 'header-mobile-menu-font-size', 'name' => _x('Menu font size', 'theme-options', 'the7mk2'), 'type' => 'slider', 'sanitize' => 'font_size', 'std' => 16, 'options' => array('min' => 9, 'max' => 120));
$options['header-mobile-menu-font-is_capitalized'] = array('id' => 'header-mobile-menu-font-is_capitalized', 'name' => _x('Capitalize menu', 'theme-options', 'the7mk2'), 'type' => 'checkbox', 'std' => 0, 'divider' => 'bottom');
$options['header-mobile-submenu-font-family'] = array('id' => 'header-mobile-submenu-font-family', 'name' => _x('Submenu font', 'theme-options', 'the7mk2'), 'type' => 'web_fonts', 'std' => 'Open Sans', 'fonts' => 'all');
$options['header-mobile-submenu-font-size'] = array('id' => 'header-mobile-submenu-font-size', 'name' => _x('Submenu font size', 'theme-options', 'the7mk2'), 'type' => 'slider', 'sanitize' => 'font_size', 'std' => 16, 'options' => array('min' => 9, 'max' => 120));
$options['header-mobile-submenu-font-is_capitalized'] = array('id' => 'header-mobile-submenu-font-is_capitalized', 'name' => _x('Capitalize submenu', 'theme-options', 'the7mk2'), 'type' => 'checkbox', 'std' => 0, 'divider' => 'bottom');
$options['header-mobile-menu-font-color'] = array('id' => 'header-mobile-menu-font-color', 'name' => _x('Normal font color', 'theme-options', 'the7mk2'), 'type' => 'color', 'std' => '#ffffff');
presscore_options_apply_template($options, 'ext-conditional-color', 'header-mobile-menu-font-hover', array('color-style' => array('name' => _x('Active & hover font color', 'theme options', 'the7mk2'))));
$options[] = array('name' => _x('Mobile menu background', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['header-mobile-menu-bg-color'] = array('id' => 'header-mobile-menu-bg-color', 'name' => _x('Background color', 'theme-options', 'the7mk2'), 'type' => 'color', 'std' => '#111111');
$options['header-mobile-menu-bg-opacity'] = array('id' => 'header-mobile-menu-bg-opacity', 'name' => _x('Background opacity', 'theme-options', 'the7mk2'), 'type' => 'slider', 'std' => 100);
$options['header-mobile-menu-bg-width'] = array('id' => 'header-mobile-menu-bg-width', 'name' => _x('Maximum background width (px)', 'theme-options', 'the7mk2'), 'type' => 'text', 'std' => '400', 'class' => 'mini', 'sanitize' => 'dimensions');
$options['header-mobile-menu-align'] = array('id' => 'header-mobile-menu-align', 'name' => _x('Mobile menu slides from', 'theme-options', 'the7mk2'), 'type' => 'images', 'std' => 'left', 'options' => array('left' => array('title' => _x('Left', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-menu-align-left.gif'), 'right' => array('title' => _x('Right', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/header-mobile-menu-align-right.gif')), 'class' => 'small');
$options[] = array('type' => 'divider');
presscore_options_apply_template($options, 'indents', 'header-style-transparent-logo-padding');
$options[] = array('name' => _x('Menu icon, top line, side line', 'theme-options', 'the7mk2'), 'id' => 'branding-menu-icon-block', 'type' => 'block');
presscore_options_apply_template($options, 'logo', 'header-style-mixed');
$options[] = array('type' => 'divider');
presscore_options_apply_template($options, 'indents', 'header-style-mixed-logo-padding');
$options[] = array('name' => _x('Floating navigation', 'theme-options', 'the7mk2'), 'id' => 'branding-floating-nav-block', 'type' => 'block');
$options['header-style-floating-choose_logo'] = array('id' => 'header-style-floating-choose_logo', 'name' => _x('Show logo', 'theme-options', 'the7mk2'), 'std' => 'custom', 'type' => 'radio', 'options' => array('custom' => _x('Custom logo', 'theme-options', 'the7mk2'), 'main' => _x('Main logo', 'theme-options', 'the7mk2'), 'none' => _x('Don\'t show', 'theme-options', 'the7mk2')));
presscore_options_apply_template($options, 'logo', 'header-style-floating', array(), array(array(array('field' => 'header-style-floating-choose_logo', 'operator' => '==', 'value' => 'custom'))));
presscore_options_apply_template($options, 'indents', 'header-style-floating-logo-padding', array('top' => array('divider' => 'top')), array(array(array('field' => 'header-style-floating-choose_logo', 'operator' => '==', 'value' => 'custom')), array(array('field' => 'header-style-floating-choose_logo', 'operator' => '==', 'value' => 'main'))));
$options[] = array('name' => _x('Mobile', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['header-mobile-first_switch-logo'] = array('id' => 'header-mobile-first_switch-logo', 'name' => _x('First switch point (tablet)', 'theme-options', 'the7mk2'), 'type' => 'radio', 'std' => 'mobile', 'options' => array('desktop' => _x('Main logo', 'theme-options', 'the7mk2'), 'mobile' => _x('Custom logo', 'theme-options', 'the7mk2')));
$options['header-mobile-second_switch-logo'] = array('id' => 'header-mobile-second_switch-logo', 'name' => _x('Second switch point (phone)', 'theme-options', 'the7mk2'), 'type' => 'radio', 'std' => 'mobile', 'options' => array('desktop' => _x('Main logo', 'theme-options', 'the7mk2'), 'mobile' => _x('Custom logo', 'theme-options', 'the7mk2')));
presscore_options_apply_template($options, 'logo', 'header-style-mobile', array(), array(array(array('field' => 'header-mobile-first_switch-logo', 'operator' => '==', 'value' => 'mobile')), array(array('field' => 'header-mobile-second_switch-logo', 'operator' => '==', 'value' => 'mobile'))));
$options[] = array('type' => 'divider');
presscore_options_apply_template($options, 'indents', 'header-style-mobile-logo-padding');
$options[] = array('name' => _x('Bottom bar', 'theme-options', 'the7mk2'), 'type' => 'block');
presscore_options_apply_template($options, 'logo', 'bottom_bar');
$options[] = array('type' => 'divider');
presscore_options_apply_template($options, 'indents', 'bottom_bar-logo-padding');
$options[] = array('name' => _x('Favicon', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['general-favicon'] = array('id' => 'general-favicon', 'name' => _x('Regular (16x16 px)', 'theme-options', 'the7mk2'), 'type' => 'upload', 'std' => '');
$options['general-favicon_hd'] = array('id' => 'general-favicon_hd', 'name' => _x('High-DPI (32x32 px)', 'theme-options', 'the7mk2'), 'type' => 'upload', 'std' => '');
$options[] = array('name' => _x('Icons for handheld devices', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['general-handheld_icon-old_iphone'] = array('id' => 'general-handheld_icon-old_iphone', 'name' => _x('60x60 px (old iPhone)', 'theme-options', 'the7mk2'), 'type' => 'upload', 'std' => '');
$options['general-handheld_icon-old_ipad'] = array('id' => 'general-handheld_icon-old_ipad', 'name' => _x('76x76 px (old iPad)', 'theme-options', 'the7mk2'), 'type' => 'upload', 'std' => '');
$options['general-handheld_icon-retina_iphone'] = array('id' => 'general-handheld_icon-retina_iphone', 'name' => _x('120x120 px (retina iPhone)', 'theme-options', 'the7mk2'), 'type' => 'upload', 'std' => '');
$options['general-handheld_icon-retina_ipad'] = array('id' => 'general-handheld_icon-retina_ipad', 'name' => _x('152x152 px (retina iPad)', 'theme-options', 'the7mk2'), 'type' => 'upload', 'std' => '');
$options[] = array('name' => _x('Copyright information', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['bottom_bar-copyrights'] = array('id' => 'bottom_bar-copyrights', 'name' => _x('Copyright information', 'theme-options', 'the7mk2'), 'type' => 'textarea', 'std' => false);
$options['bottom_bar-credits'] = array('id' => 'bottom_bar-credits', 'name' => _x('Give credits to Dream-Theme', 'theme-options', 'the7mk2'), 'type' => 'checkbox', 'std' => '1');
/**
 * Page titles settings.
 *
 * @since 1.0.0
 */
// File Security Check
if (!defined('ABSPATH')) {
    exit;
}
$options[] = array('name' => _x('Page titles', 'theme-options', 'the7mk2'), 'type' => 'heading');
$options[] = array('name' => _x('Title area layout', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['general-title_align'] = array('id' => 'general-title_align', 'name' => _x('Title area layout', 'theme-options', 'the7mk2'), 'desc' => _x('Title and breadcrumbs interposition', 'theme-options', 'the7mk2'), 'type' => 'images', 'class' => 'small', 'std' => 'left', 'options' => array('left' => array('title' => 'Left title + right breadcrumbs', 'src' => '/inc/admin/assets/images/l-r.gif'), 'right' => array('title' => 'Right title + left breadcrumbs', 'src' => '/inc/admin/assets/images/r-l.gif'), 'all_left' => array('title' => 'Left', 'src' => '/inc/admin/assets/images/l-l.gif'), 'all_right' => array('title' => 'Right', 'src' => '/inc/admin/assets/images/r-r.gif'), 'center' => array('title' => 'Centered', 'src' => '/inc/admin/assets/images/centre.gif')));
$options[] = array('type' => 'divider');
$options['general-title_height'] = array('id' => 'general-title_height', 'name' => _x('Title area height (px)', 'theme-options', 'the7mk2'), 'type' => 'text', 'std' => '170', 'class' => 'mini', 'sanitize' => 'slider');
$options[] = array('type' => 'divider');
presscore_options_apply_template($options, 'indents-v', 'page_title-padding');
$options[] = array('name' => _x('Page title', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['general-show_titles'] = array('id' => 'general-show_titles', 'name' => _x('Page title', 'theme-options', 'the7mk2'), 'type' => 'images', 'class' => 'small', 'std' => '1', 'options' => array('1' => array('title' => _x('Enabled', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-showtitles-enabled.gif'), '0' => array('title' => _x('Disabled', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-showtitles-disabled.gif')));
$options['general-title_size'] = array('id' => 'general-title_size', 'name' => _x('Title size', 'theme-options', 'the7mk2'), 'type' => 'select', 'std' => 'normal', 'class' => 'mini', 'options' => array('h1' => _x('h1', 'backend metabox', 'the7mk2'), 'h2' => _x('h2', 'backend metabox', 'the7mk2'), 'h3' => _x('h3', 'backend metabox', 'the7mk2'), 'h4' => _x('h4', 'backend metabox', 'the7mk2'), 'h5' => _x('h5', 'backend metabox', 'the7mk2'), 'h6' => _x('h6', 'backend metabox', 'the7mk2'), 'small' => _x('small', 'backend metabox', 'the7mk2'), 'normal' => _x('medium', 'backend metabox', 'the7mk2'), 'big' => _x('large', 'backend metabox', 'the7mk2')), 'dependency' => array(array(array('field' => 'general-show_titles', 'operator' => '==', 'value' => '1'))));
$options['general-title_color'] = array('id' => 'general-title_color', 'name' => _x('Title color', 'theme-options', 'the7mk2'), 'type' => 'color', 'std' => '#ffffff', 'dependency' => array(array(array('field' => 'general-show_titles', 'operator' => '==', 'value' => '1'))));
$options[] = array('name' => _x('Breadcrumbs', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['general-show_breadcrumbs'] = array('id' => 'general-show_breadcrumbs', 'name' => _x('Breadcrumbs', 'theme-options', 'the7mk2'), 'std' => '1', 'type' => 'images', 'class' => 'small', 'options' => array('1' => array('title' => _x('Enabled', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-showbreadcrumbs-enabled.gif'), '0' => array('title' => _x('Disabled', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-showbreadcrumbs-disabled.gif')));
$options['general-breadcrumbs_color'] = array('id' => 'general-breadcrumbs_color', 'name' => _x('Breadcrumbs color', 'theme-options', 'the7mk2'), 'type' => 'color', 'std' => '#ffffff', 'dependency' => array(array(array('field' => 'general-show_breadcrumbs', 'operator' => '==', 'value' => '1'))));
$options['general-breadcrumbs_bg_color'] = array('id' => 'general-breadcrumbs_bg_color', 'name' => _x('Breadcrumbs background color', 'theme-options', 'the7mk2'), 'type' => 'images', 'class' => 'small', 'std' => 'disabled', 'options' => array('disabled' => array('title' => _x('Disabled', 'backend metabox', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-breadcrumbsbgcolor-disabled.gif'), 'black' => array('title' => _x('Black', 'backend metabox', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-breadcrumbsbgcolor-black.gif'), 'white' => array('title' => _x('White', 'backend metabox', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-breadcrumbsbgcolor-white.gif')), 'dependency' => array(array(array('field' => 'general-show_breadcrumbs', 'operator' => '==', 'value' => '1'))));
$options[] = array('name' => _x('Title area style', 'theme-options', 'the7mk2'), 'type' => 'block');
$options['general-title_bg_mode'] = array('id' => 'general-title_bg_mode', 'name' => _x('Title background / line', 'theme-options', 'the7mk2'), 'type' => 'images', 'class' => 'small', 'std' => 'content_line', 'options' => array('disabled' => array('title' => _x('Disabled', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-title_bg_mode-disabled.gif'), 'content_line' => array('title' => _x('Content-width line', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-title_bg_mode-content-width-line.gif'), 'fullwidth_line' => array('title' => _x('Full-width line', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-title_bg_mode-full-width-line.gif'), 'background' => array('title' => _x('Background', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/centre.gif'), 'gradient' => array('title' => _x('Gradient', 'theme-options', 'the7mk2'), 'src' => '/inc/admin/assets/images/general-title_bg_mode-gradient.gif')), 'show_hide' => array('background' => array('general-title-bg-mode-main-container', 'general-title-bg-image', 'general-title-bg-solid-color'), 'gradient' => array('general-title-bg-mode-main-container', 'general-title-bg-gradient-color')));
$options[] = array('type' => 'js_hide_begin', 'class' => 'general-title_bg_mode general-title-bg-mode-main-container');
$options[] = array('type' => 'divider');
$options['header-background'] = array('id' => 'header-background', 'name' => _x('Header style', 'theme-options', 'the7mk2'), 'std' => 'normal', 'type' => 'images', 'class' => 'small', 'options' => array('normal' => array('src' => '/inc/admin/assets/images/header-background-default.gif', 'title' => _x('Default', 'theme-options', 'the7mk2')), 'overlap' => array('src' => '/inc/admin/assets/images/header-background-overlapping.gif', 'title' => _x('Overlapping', 'theme-options', 'the7mk2')), 'transparent' => array('src' => '/inc/admin/assets/images/header-background-transparent.gif', 'title' => _x('Transparent', 'theme-options', 'the7mk2'))), 'show_hide' => array('transparent' => true));
$options[] = array('type' => 'js_hide_begin');
$options[] = array('type' => 'divider');