PATH:
home
/
letacommog
/
rachat-or-bourgenbresse
/
wp-content
/
themes
/
dt-the7
/
inc
/
admin
/
theme-options
<?php /** * General. */ // File Security Check if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Heading definition. */ $options[] = array( "name" => _x('General Appearance', 'theme-options', 'the7mk2'), "type" => "heading" ); /** * Layout. */ $options[] = array( "name" => _x('Layout', 'theme-options', 'the7mk2'), "type" => "block_begin" ); // text $options[] = array( "desc" => '', "name" => _x( 'Content width (in "px" or "%")', 'theme-options', 'the7mk2' ), "id" => "general-content_width", "std" => '1200px', "type" => "text", "sanitize" => 'css_width' ); // radio $options[] = array( "name" => _x('Layout', 'theme-options', 'the7mk2'), "id" => 'general-layout', "std" => 'wide', 'type' => 'images', 'class' => 'small', 'options' => array( 'wide' => array( 'title' => _x( 'Wide', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-layout-wide.gif', ), 'boxed' => array( 'title' => _x( 'Boxed', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-layout-boxed.gif', ), ), "show_hide" => array( "boxed" => true ) ); // hidden area $options[] = array( "type" => "js_hide_begin" ); // text $options[] = array( "desc" => '', "name" => _x( 'Box width (in "px" or "%")', 'theme-options', 'the7mk2' ), "id" => "general-box_width", "std" => '1320px', "type" => "text", "sanitize" => 'css_width' ); $options[] = array( "type" => "js_hide_end" ); $options[] = array( 'type' => 'divider' ); // title $options[] = array( "type" => 'title', "name" => _x('Background under the box', 'theme-options', 'the7mk2') ); // colorpicker $options[] = array( "name" => _x( 'Background color', 'theme-options', 'the7mk2' ), "id" => "general-boxed_bg_color", "std" => "#ffffff", "type" => "color" ); // background_img $options[] = array( 'type' => 'background_img', 'id' => 'general-boxed_bg_image', 'name' => _x( 'Add background image', 'theme-options', 'the7mk2' ), 'std' => array( 'image' => '', 'repeat' => 'repeat', 'position_x' => 'center', 'position_y' => 'center' ), ); // checkbox $options[] = array( "name" => _x( 'Fullscreen ', 'theme-options', 'the7mk2' ), "id" => 'general-boxed_bg_fullscreen', "type" => 'checkbox', 'std' => 0 ); // Fixed background $options[] = array( "name" => _x( 'Fixed background ', 'theme-options', 'the7mk2' ), "id" => 'general-boxed_bg_fixed', "type" => 'checkbox', 'std' => 0 ); $options[] = array( "type" => "block_end"); /** * Background. */ $options[] = array( "name" => _x('Background', 'theme-options', 'the7mk2'), "type" => "block_begin" ); // colorpicker $options[] = array( "name" => _x( 'Color', 'theme-options', 'the7mk2' ), "id" => "general-bg_color", "std" => "#252525", "type" => "color" ); // slider $options[] = array( "name" => _x( 'Opacity', 'theme-options', 'the7mk2' ), "desc" => _x( '"Opacity" isn\'t compatible with slide-out footer', 'theme-options', 'the7mk2' ), "id" => "general-bg_opacity", "std" => 100, "type" => "slider" ); // background_img $options[] = array( 'name' => _x( 'Add background image', 'theme-options', 'the7mk2' ), 'id' => 'general-bg_image', 'std' => array( 'image' => '', 'repeat' => 'repeat', 'position_x' => 'center', 'position_y' => 'center' ), 'type' => 'background_img' ); // checkbox $options[] = array( "name" => _x( 'Fullscreen', 'theme-options', 'the7mk2' ), "id" => 'general-bg_fullscreen', "type" => 'checkbox', 'std' => 0 ); // Fixed background $options[] = array( "type" => 'checkbox', "id" => 'general-bg_fixed', "name" => _x( 'Fixed background', 'theme-options', 'the7mk2' ), "desc" => _x( '"Fixed" setting isn\'t compatible with "overlapping" title area style.', 'theme-options', 'the7mk2' ), 'std' => 0 ); $options[] = array( "type" => "block_end"); /** * Content boxes. */ $options[] = array( "name" => _x('Content boxes', 'theme-options', 'the7mk2'), "type" => "block_begin" ); // colorpicker $options[] = array( "name" => _x( 'Background color', 'theme-options', 'the7mk2' ), "id" => "general-content_boxes_bg_color", "std" => "#FFFFFF", "type" => "color" ); // slider $options[] = array( "name" => _x( 'Background opacity', 'theme-options', 'the7mk2' ), "id" => "general-content_boxes_bg_opacity", "std" => 100, "type" => "slider" ); // radio $options[] = array( "name" => _x( "Decoration", "theme-options", 'the7mk2' ), "id" => "general-content_boxes_decoration", "std" => "none", 'type' => 'images', 'class' => 'small', "show_hide" => array( 'outline' => true ), 'options' => array( 'none' => array( 'title' => _x( 'None', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-content_boxes_decoration-none.gif', ), 'shadow' => array( 'title' => _x( 'Shadow', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-content_boxes_decoration-shadow.gif', ), 'outline' => array( 'title' => _x( 'Outline', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-content_boxes_decoration-outline.gif', ), ), ); // hidden area $options[] = array( "type" => "js_hide_begin" ); // colorpicker $options[] = array( "name" => _x( 'Decoration outline color', 'theme-options', 'the7mk2' ), "id" => "general-content_boxes_decoration_outline_color", "std" => "#FFFFFF", "type" => "color" ); // slider $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"); /** * Dividers. */ $options[] = array( "name" => _x('Dividers', 'theme-options', 'the7mk2'), "type" => "block" ); $options["dividers-color"] = array( "name" => _x( 'Dividers color', 'theme-options', 'the7mk2' ), "id" => "dividers-color", "std" => "#cccccc", "type" => "color" ); $options["dividers-opacity"] = array( "name" => _x( 'Dividers opacity', 'theme-options', 'the7mk2' ), "id" => "dividers-opacity", "std" => 50, "type" => "slider" ); /** * Color Accent. */ $options[] = array( "name" => _x('Color Accent', 'theme-options', 'the7mk2'), "type" => "block_begin" ); // radio $options["general-accent_color_mode"] = array( "name" => _x( "Accent color", "theme-options", 'the7mk2' ), "id" => "general-accent_color_mode", "std" => "color", 'type' => 'images', 'class' => 'small', "show_hide" => array( 'color' => "general-accent_color_mode-color", 'gradient' => "general-accent_color_mode-gradient" ), 'options' => array( 'color' => array( 'title' => _x( 'Solid color', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/color-accent.gif', ), 'gradient' => array( 'title' => _x( 'Gradient', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/color-custom-gradient.gif', ), ), ); // hidden area $options[] = array( "type" => "js_hide_begin", "class" => "general-accent_color_mode general-accent_color_mode-color" ); // colorpicker $options["general-accent_bg_color"] = array( "name" => " ", "id" => "general-accent_bg_color", "std" => "#D73B37", "type" => "color" ); $options[] = array( "type" => "js_hide_end" ); // hidden area $options[] = array( "type" => "js_hide_begin", "class" => "general-accent_color_mode general-accent_color_mode-gradient" ); // colorpicker $options["general-accent_bg_color_gradient"] = array( "name" => " ", "id" => "general-accent_bg_color_gradient", "std" => array( '#ffffff', '#000000' ), "type" => "gradient" ); $options[] = array( "type" => "js_hide_end" ); $options[] = array( "type" => "block_end"); /** * Border radius. */ $options[] = array( "name" => _x('Border radius', 'theme-options', 'the7mk2'), "type" => "block_begin" ); // input $options[] = array( "name" => _x( 'Border Radius (px)', 'theme-options', 'the7mk2' ), "id" => 'general-border_radius', "std" => '8', "type" => 'text', "sanitize" => 'dimensions' ); $options[] = array( "type" => "block_end"); /** * Contact form. */ $options[] = array( "name" => _x('Contact form', 'theme-options', 'the7mk2'), "type" => "block_begin" ); // radio $options[] = array( "name" => _x( "Style", "theme-options", 'the7mk2' ), "id" => "general-contact_form_style", 'type' => 'images', 'class' => 'small', "std" => "ios", 'options' => array( 'ios' => array( 'title' => _x( 'iOS', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-contact_form_style-ios.gif', ), 'minimal' => array( 'title' => _x( 'Minimal', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-contact_form_style-minimal.gif', ), 'material' => array( 'title' => _x( 'Material design', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-contact_form_style-material.gif', ), ), ); $options[] = array( "type" => "block_end"); /** * Slideshow bullets. */ $options[] = array( "name" => _x('Slideshow bullets', 'theme-options', 'the7mk2'), "type" => "block_begin" ); // radio $options[] = array( "name" => _x( "Style", "theme-options", 'the7mk2' ), "id" => "general-slideshow_bullets_style", 'type' => 'images', 'class' => 'small', "std" => "outline", 'options' => array( 'transparent' => array( 'title' => _x( 'Semitransparent', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-slideshow_bullets_style-semi.gif', ), 'accent' => array( 'title' => _x( 'Accent color', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-slideshow_bullets_style-accent.gif', ), 'outline' => array( 'title' => _x( 'Outlines', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-slideshow_bullets_style-outlines.gif', ), ) ); $options[] = array( "type" => "block_end"); /** * Beautiful loading. */ $options[] = array( 'name' => _x( 'Beautiful loading', 'theme-options', 'the7mk2' ), 'type' => 'block' ); $options['general-beautiful_loading'] = array( 'name' => _x( 'Beautiful loading', 'theme-options', 'the7mk2' ), 'id' => 'general-beautiful_loading', 'type' => 'images', 'class' => 'small', 'std' => 'enabled', 'options' => array( 'enabled' => array( 'title' => _x( 'Enabled', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-beautiful_loading-enabled.gif', ), 'disabled' => array( 'title' => _x( 'Disabled', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/general-beautiful_loading-disabled.gif', ), ), 'show_hide' => array( 'enabled' => true ), ); $options[] = array( 'type' => 'js_hide_begin' ); $options['general-fullscreen_overlay_color_mode'] = array( 'name' => _x( 'Fullscreen overlay color', 'theme-options', 'the7mk2' ), 'id' => 'general-fullscreen_overlay_color_mode', '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', ), ), ); $options['general-fullscreen_overlay_color'] = array( 'name' => _x( 'Fullscreen overlay custom color', 'theme-options', 'the7mk2' ), 'id' => 'general-fullscreen_overlay_color', 'dependency' => array( array( array( 'field' => 'general-fullscreen_overlay_color_mode', 'operator' => '==', 'value' => 'color', ), array( 'field' => 'general-beautiful_loading', 'operator' => '==', 'value' => 'enabled', ), ), ), 'type' => 'color', 'std' => '#ffffff', ); $options['general-fullscreen_overlay_gradient'] = array( 'name' => _x( 'Fullscreen overlay custom gradient', 'theme-options', 'the7mk2' ), 'id' => 'general-fullscreen_overlay_gradient', 'dependency' => array( array( array( 'field' => 'general-fullscreen_overlay_color_mode', 'operator' => '==', 'value' => 'gradient', ), array( 'field' => 'general-beautiful_loading', 'operator' => '==', 'value' => 'enabled', ), ), ), 'type' => 'gradient', 'std' => array( 0 => '#ffffff', 1 => '#ffffff', ), ); $options['general-fullscreen_overlay_opacity'] = array( 'name' => _x( 'Fullscreen overlay opacity', 'theme-options', 'the7mk2' ), 'id' => 'general-fullscreen_overlay_opacity', 'type' => 'slider', 'std' => 100, 'options' => array( 'max' => 100, 'min' => 0, 'step' => 1, ), ); $options['general-spinner_color'] = array( 'name' => _x( 'Spinner color', 'theme-options', 'the7mk2' ), 'id' => 'general-spinner_color', 'type' => 'color', 'std' => '#ffffff', ); $options['general-spinner_opacity'] = array( 'name' => _x( 'Spinner opacity', 'theme-options', 'the7mk2' ), 'id' => 'general-spinner_opacity', 'type' => 'slider', 'std' => 100, 'options' => array( 'max' => 100, 'min' => 0, 'step' => 1, ), ); $options['general-loader_style'] = array( 'name' => _x( 'Loader style', 'theme-options', 'the7mk2' ), 'id' => 'general-loader_style', 'type' => 'radio', 'std' => 'double_circles', 'options' => array( 'double_circles' => _x( 'Spinner', 'theme-options', 'the7mk2' ), 'square_jelly_box' => _x( 'Ring', 'theme-options', 'the7mk2' ), 'ball_elastic_dots' => _x( 'Bars', 'theme-options', 'the7mk2' ), 'custom' => _x( 'Custom', 'theme-options', 'the7mk2' ), ), 'show_hide' => array( 'custom' => true ), ); $options[] = array( 'type' => 'js_hide_begin' ); $options[] = array( 'desc' => _x( 'Paste HTML code of your custom pre-loader image in the field below.', 'theme-options', 'the7mk2' ), 'type' => 'info', ); $options['general-custom_loader'] = array( 'id' => 'general-custom_loader', 'type' => 'textarea', 'std' => false, 'sanitize' => 'without_sanitize', 'settings' => array( 'rows' => 8 ), ); $options[] = array( 'type' => 'js_hide_end' ); $options[] = array( 'type' => 'js_hide_end' );
[+]
..
[-] options-widgetareas.php
[edit]
[-] options-footer.php
[edit]
[-] options-imagehoovers.php
[edit]
[-] options-sidebar.php
[edit]
[-] .htaccess
[edit]
[-] options-blog-and-portfolio.php
[edit]
[-] options-likebuttons.php
[edit]
[-] options-branding.php
[edit]
[-] options-stripes.php
[edit]
[-] options.php
[edit]
[-] options-fonts.php
[edit]
[-] options-general.php
[edit]
[-] options-buttons.php
[edit]
[-] index.php
[edit]
[-] options-importexport.php
[edit]
[-] options-advanced.php
[edit]
[-] options-header.php
[edit]
[-] options-skins.php
[edit]
[-] options-page-titles.php
[edit]