EstudioJuridicoAlmagro_Web/www/wpv_theme/options/quick_setup/general.php
2013-03-01 18:06:10 +00:00

366 lines
8.9 KiB
PHP

<?php
global $wpv_slider_effects;
return array(
array(
'name' => __('Quick setup', 'wpv'),
'type' => 'start'
),
array(
'name' => __('General', 'wpv'),
'type' => 'separator',
),
array(
'name' => __('Display "scroll to top" button', 'wpv'),
'id' => 'show_scroll_to_top',
'type' => 'toggle',
),
array(
'name' => __('Display feedback button', 'wpv'),
'id' => 'show-feedback',
'type' => 'toggle',
),
array(
'name' => __('Feedback button link', 'wpv'),
'id' => 'feedback-link',
'type' => 'text',
),
array(
'name' => __('RSS Button in top right corner', 'wpv'),
'id' => 'show_rss_button',
'type' => 'toggle',
),
array(
'name' => __('Facebook Icon in top right corner', 'wpv'),
'id' => 'show_fb',
'type' => 'toggle',
),
array(
'name' => __('Facebook link', 'wpv'),
'id' => 'fb-link',
'type' => 'text',
),
array(
'name' => __('Twitter Icon in top right corner', 'wpv'),
'id' => 'show_twitter',
'type' => 'toggle',
),
array(
'name' => __('LinkedIn in top right corner', 'wpv'),
'id' => 'show_linkedin',
'type' => 'toggle',
),
array(
'name' => __('LinkedIn link', 'wpv'),
'id' => 'linkedin-link',
'type' => 'text',
),
array(
'name' => __('Twitter link', 'wpv'),
'id' => 'twitter-link',
'type' => 'text',
),
array(
'name' => __('Top Menu Phone', 'wpv'),
'id' => 'show-phone-top',
'type' => 'toggle',
),
array(
'name' => __('Phone Number', 'wpv'),
'id' => 'phone-num-top',
'type' => 'textarea',
),
array(
'name' => __('Custom logo picture url', 'wpv'),
'desc' => __('Optional way to replace "heading" and "description" text for your website with an image. Leave blank if none required', 'wpv'),
'id' => 'custom-header-logo',
'type' => 'upload',
),
array(
'name' => __('Copyright text (in footer)', 'wpv'),
'desc' => __("Custom text to appear in the footer", 'wpv'),
'id' => 'credits',
'type' => 'textarea',
),
array(
'name' => __('Favicon url', 'wpv'),
'desc' => __('Upload your custom "favicon" which is visible in browser favorites and tabs.
(Must be .png or .ico file - 16px by 16px ). Leave blank if none required', 'wpv'),
'id' => 'favicon_url',
'type' => 'upload',
),
array(
'name' => __('Layout', 'wpv'),
'type' => 'separator',
),
array(
'name' => __('Sidebar layout for new pages', 'wpv'),
'id' => 'default-body-layout',
'type' => 'body-layout',
),
array(
'name' => __('Enable header slider', 'wpv'),
'id' => 'has-header-slider',
'type' => 'toggle',
),
array(
'name' => __('Enable header widget areas', 'wpv'),
'id' => 'has-header-sidebars',
'type' => 'toggle',
),
array(
'name' => __('Enable footer widget areas', 'wpv'),
'id' => 'has-footer-sidebars',
'type' => 'toggle',
),
array(
'name' => __('Enable boxed layout', 'wpv'),
'desc' => __('You can style the box under the section "boxed layout" in "Styles" section.', 'wpv'),
'id' => 'enable_box_layout',
'type' => 'toggle',
),
array(
'name' => __('Enable fixed header', 'wpv'),
'id' => 'fixed-header',
'type' => 'toggle',
),
array(
'name' => __('Header height', 'wpv'),
'id' => 'header-height',
'desc' => __('This is the area above the slider', 'wpv'),
'type' => 'range',
'min' => 50,
'max' => 300,
),
array(
'name' => __('Header slider height', 'wpv'),
'desc' => __('In pixels', 'wpv'),
'id' => 'header-slider-height',
'type' => 'range',
'min' => 100,
'max' => 800,
),
array(
'name' => __('Site width', 'wpv'),
'class' => 'hidden',
'id' => 'content-width',
'type' => 'range',
'min' => 940,
'max' => 940,
),
array(
'name' => __('Left sidebar width', 'wpv'),
'id' => 'left_sidebar_width',
'type' => 'range',
'min' => 150,
'max' => 400,
),
array(
'name' => __('Right sidebar width', 'wpv'),
'id' => 'right_sidebar_width',
'type' => 'range',
'min' => 150,
'max' => 400,
),
array(
'name' => __('Styles', 'wpv'),
'type' => 'separator',
),
array(
'name' => __('Background color', 'wpv'),
'id' => 'css_body_background',
'type' => 'color',
),
array(
'name' => __('Background picture url', 'wpv'),
'desc' => __('Leave blank if none required', 'wpv'),
'id' => 'css_body_background_picture',
'type' => 'upload',
),
array(
'text' => __('You can also choose some of the preset background patterns we\'ve crafted for you', 'wpv'),
'type' => 'info',
),
array(
'type' => 'autofill',
'class' => 'no-desc',
'option_sets' => array(
array(
'name' => __('Random grey variations', 'wpv'),
'image' => WPV_THEME_IMAGES . 'patterns/random_grey_variations-demo.png',
'values' => array(
'css_body_background_picture' => WPV_THEME_IMAGES . 'patterns/random_grey_variations.png',
'css_body_background_repeat' => 'repeat',
'css_body_background_position' => 'center center',
),
),
array(
'name' => __('Green gobbler', 'wpv'),
'image' => WPV_THEME_IMAGES . 'patterns/green_gobbler-demo.png',
'values' => array(
'css_body_background_picture' => WPV_THEME_IMAGES . 'patterns/green_gobbler.png',
'css_body_background_repeat' => 'repeat',
'css_body_background_position' => 'center center',
),
),
array(
'name' => __('Brushed alu dark', 'wpv'),
'image' => WPV_THEME_IMAGES . 'patterns/brushed_alu_dark-demo.png',
'values' => array(
'css_body_background_picture' => WPV_THEME_IMAGES . 'patterns/brushed_alu_dark.png',
'css_body_background_repeat' => 'repeat',
'css_body_background_position' => 'center center',
),
),
array(
'name' => __('Light honeycomb', 'wpv'),
'image' => WPV_THEME_IMAGES . 'patterns/light_honeycomb-demo.png',
'values' => array(
'css_body_background_picture' => WPV_THEME_IMAGES . 'patterns/light_honeycomb.png',
'css_body_background_repeat' => 'repeat',
'css_body_background_position' => 'center center',
),
),
array(
'name' => __('Padded', 'wpv'),
'image' => WPV_THEME_IMAGES . 'patterns/padded-demo.png',
'values' => array(
'css_body_background_picture' => WPV_THEME_IMAGES . 'patterns/padded.png',
'css_body_background_repeat' => 'repeat',
'css_body_background_position' => 'center center',
),
),
array(
'name' => __('Vichy', 'wpv'),
'image' => WPV_THEME_IMAGES . 'patterns/vichy-demo.png',
'values' => array(
'css_body_background_picture' => WPV_THEME_IMAGES . 'patterns/vichy.png',
'css_body_background_repeat' => 'repeat',
'css_body_background_position' => 'center center',
),
),
array(
'name' => __('Yellow', 'wpv'),
'image' => WPV_THEME_IMAGES . 'patterns/pattern_04-demo.jpg',
'values' => array(
'css_body_background_picture' => WPV_THEME_IMAGES . 'patterns/pattern_04.jpg',
'css_body_background_repeat' => 'repeat',
'css_body_background_position' => 'center center',
),
),
array(
'name' => __('Vintage', 'wpv'),
'image' => WPV_THEME_IMAGES . 'patterns/pattern_03-demo.jpg',
'values' => array(
'css_body_background_picture' => WPV_THEME_IMAGES . 'patterns/pattern_03.jpg',
'css_body_background_repeat' => 'repeat',
'css_body_background_position' => 'center center',
),
),
array(
'name' => __('Progressio', 'wpv'),
'image' => WPV_THEME_IMAGES . 'patterns/progressio-demo.jpg',
'values' => array(
'css_body_background_picture' => WPV_THEME_IMAGES . 'patterns/progressio.jpg',
'css_body_background_repeat' => 'no-repeat',
'css_body_background_position' => 'center top',
),
),
array(
'name' => __('Progressio Dark', 'wpv'),
'image' => WPV_THEME_IMAGES . 'patterns/progressio_dark-demo.jpg',
'values' => array(
'css_body_background_picture' => WPV_THEME_IMAGES . 'patterns/progressio.jpg',
'css_body_background_repeat' => 'no-repeat',
'css_body_background_position' => 'center top',
),
),
),
),
array(
'name' => __('Accent color', 'wpv'),
'id' => 'accent-color',
'type' => 'color',
),
array(
'name' => __('Header slider', 'wpv'),
'type' => 'separator',
),
array(
'name' => __('Full width header slider', 'wpv'),
'id' => 'has-fullwidth-slider',
'type' => 'toggle',
),
array(
'name' => __('Slider style', 'wpv'),
'desc' => __('The "shrink" style doesn\'t work work with a full width slider', 'wpv'),
'id' => 'header-slider-effect',
'type' => 'select',
'options' => $wpv_slider_effects,
),
array(
'name' => __('Autostart', 'wpv'),
'id' => 'header-slider-direction',
'type' => 'select',
'options' => array(
'none' => __('Disable autostart', 'wpv'),
'left' => __('Left (backwards)', 'wpv'),
'right' => __('Right (forwards)', 'wpv'),
)
),
array(
'name' => __('Advanced', 'wpv'),
'type' => 'separator',
),
array(
'name' => __('Custom css', 'wpv'),
'desc' => __('Quickly add some CSS to your theme by adding it to this block', 'wpv'),
'id' => 'custom_css',
'type' => 'textarea',
),
array(
'type' => 'end'
)
);