PATH:
home
/
letacommog
/
rachat-or-bourgenbresse
/
wp-content
/
themes
/
dt-the7
/
inc
/
admin
/
theme-options
<?php /** * Sidebar. */ // File Security Check if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Page definition. */ $options[] = array( "page_title" => _x( "Sidebar", 'theme-options', 'the7mk2' ), "menu_title" => _x( "Sidebar", 'theme-options', 'the7mk2' ), "menu_slug" => "of-sidebar-menu", "type" => "page" ); /** * Heading definition. */ $options[] = array( "name" => _x( 'Sidebar', 'theme-options', 'the7mk2' ), "type" => "heading" ); // block begin $options[] = array( "name" => _x( "Sidebar settings", "theme-options", 'the7mk2' ), "type" => "block_begin" ); $options[] = array( "name" => _x( "Sidebar width (%)", "theme-options", 'the7mk2' ), "id" => "sidebar-width", "std" => "30", "type" => "text", "class" => "mini", "sanitize" => "dimensions" ); $options[] = array( "type" => "divider" ); $options[] = array( "name" => _x( "Vertical distance between widgets (px)", "theme-options", 'the7mk2' ), "id" => "sidebar-vertical_distance", "std" => "60", "type" => "text", "class" => "mini", "sanitize" => "dimensions" ); $options[] = array( "type" => "divider" ); $options[] = 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', ), ), "show_hide" => array( 'with_dividers' => array( "sidebar-dividers-vertical", "sidebar-dividers-horizontal" ), 'with_bg' => array( "sidebar-bg-settings", "sidebar-dividers-horizontal" ), 'with_widgets_bg' => "sidebar-bg-settings", ) ); $options[] = array( "type" => "js_hide_begin", "class" => "sidebar-visual_style sidebar-dividers-vertical" ); $options[] = array( "name" => _x( "Vertical divider", "theme-options", 'the7mk2' ), "id" => "sidebar-divider-vertical", "std" => "1", 'type' => 'images', 'class' => 'small', 'options' => array( '1' => array( 'title' => _x( 'Enabled', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/sidebar-divider-vertical-enabled.gif', ), '0' => array( 'title' => _x( 'Disabled', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/sidebar-divider-vertical-disabled.gif', ), ), ); $options[] = array( "type" => "js_hide_end" ); $options[] = array( "type" => "js_hide_begin", "class" => "sidebar-visual_style sidebar-dividers-horizontal" ); $options[] = array( "name" => _x( "Dividers between widgets", "theme-options", 'the7mk2' ), "id" => "sidebar-divider-horizontal", "std" => "1", 'type' => 'images', 'class' => 'small', 'options' => array( '1' => array( 'title' => _x( 'Enabled', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/sidebar-divider-horizontal-enabled.gif', ), '0' => array( 'title' => _x( 'Disabled', 'theme-options', 'the7mk2' ), 'src' => '/inc/admin/assets/images/sidebar-divider-vertical-disabled.gif', ), ), ); $options[] = array( "type" => "js_hide_end" ); $options[] = array( "type" => "js_hide_begin", "class" => "sidebar-visual_style sidebar-bg-settings" ); $options[] = array( "desc" => '', "name" => _x( 'Background color', 'theme-options', 'the7mk2' ), "id" => "sidebar-bg_color", "std" => "#ffffff", "type" => "color" ); $options[] = array( "name" => _x( 'Background opacity', 'theme-options', 'the7mk2' ), "id" => "sidebar-bg_opacity", "std" => 100, "type" => "slider" ); $options[] = array( 'type' => 'background_img', 'id' => 'sidebar-bg_image', "name" => _x( 'Add background image', 'theme-options', 'the7mk2' ), 'std' => array( 'image' => '', 'repeat' => 'repeat', 'position_x' => 'center', 'position_y' => 'center', ), ); $options[] = array( "name" => _x( "Decoration", "theme-options", 'the7mk2' ), "id" => "sidebar-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', ), ), ); $options[] = array( "type" => "js_hide_begin" ); $options[] = array( "name" => _x( 'Decoration outline color', 'theme-options', 'the7mk2' ), "id" => "sidebar-decoration_outline_color", "std" => "#FFFFFF", "type" => "color" ); $options[] = array( "name" => _x( 'Decoration outline opacity', 'theme-options', 'the7mk2' ), "id" => "sidebar-decoration_outline_opacity", "std" => 100, "type" => "slider" ); $options[] = array( "type" => "js_hide_end" ); $options[] = array( "type" => "js_hide_end" ); // block end $options[] = array( "type" => "block_end" ); // block begin $options[] = array( "name" => _x('Text', 'theme-options', 'the7mk2'), "type" => "block_begin" ); $options[] = array( "desc" => '', "name" => _x( 'Headers color', 'theme-options', 'the7mk2' ), "id" => "sidebar-headers_color", "std" => "#000000", "type" => "color" ); $options[] = array( "desc" => '', "name" => _x( 'Text color', 'theme-options', 'the7mk2' ), "id" => "sidebar-primary_text_color", "std" => "#686868", "type" => "color" ); // block end $options[] = array( "type" => "block_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]