| Current Path : /home/xbodynamge/lebauwcentre/wp-content/themes/customify/inc/customizer/configs/ |
| Current File : /home/xbodynamge/lebauwcentre/wp-content/themes/customify/inc/customizer/configs/config-default.php |
<?php
add_filter( 'customify/customize/settings-default', 'customify_layout_builder_config_default', 15, 2 );
/**
* Default theme customize settings data.
*
* @param string $val
* @param string $name
*
* @return mixed
*/
function customify_layout_builder_config_default( $val, $name ) {
$defaults =
array(
// Start header builder layout version 1.
'header_builder_panel' => array(
'desktop' =>
array(
'main' =>
array(
array(
'x' => '0',
'y' => '1',
'width' => '3',
'height' => '1',
'id' => 'logo',
),
array(
'x' => '3',
'y' => '1',
'width' => '9',
'height' => '1',
'id' => 'primary-menu',
),
),
),
'mobile' =>
array(
'main' =>
array(
array(
'x' => '0',
'y' => '1',
'width' => '5',
'height' => '1',
'id' => 'logo',
),
array(
'x' => '9',
'y' => '1',
'width' => '3',
'height' => '1',
'id' => 'nav-icon',
),
),
'sidebar' =>
array(
array(
'x' => '0',
'y' => '1',
'width' => '1',
'height' => '1',
'id' => 'html',
),
array(
'x' => '0',
'y' => '1',
'width' => '1',
'height' => '1',
'id' => 'primary-menu',
),
),
),
), // End header builder layout version 1.
'header_builder_version' => '',
// Start header builder layout version 2.
'header_builder_panel_v2' => array(
'desktop' => array(
'top' => array(
'left' => array(
array(
'id' => 'html',
),
),
'center' => array(),
'right' => array(
array(
'id' => 'social-icons',
),
),
),
'main' => array(
'left' => array(
array(
'id' => 'logo',
),
array(
'id' => 'primary-menu',
),
),
'center' => array(),
'right' => array(
array(
'id' => 'search_icon',
),
array(
'id' => 'nav-icon',
),
array(
'id' => 'button',
),
),
),
'bottom' => array(
'left' => array(),
'center' => array(),
'right' => array(),
),
),
'mobile' => array(
'top' => array(
'left' => array(),
'center' => array(),
'right' => array(),
),
'main' => array(
'left' => array(
array(
'id' => 'logo',
),
),
'center' => array(),
'right' => array(
array(
'id' => 'search_icon',
),
array(
'id' => 'nav-icon',
),
),
),
'bottom' => array(
'left' => array(),
'center' => array(),
'right' => array(),
),
'sidebar' => array(
'sidebar' => array(
array(
'id' => 'html',
),
array(
'id' => 'search_box',
),
array(
'id' => 'primary-menu',
),
array(
'id' => 'social-icons',
),
array(
'id' => 'button',
),
),
),
),
), // End header builder layout version 2.
'header_top_height' => array(
'desktop' =>
array(
'unit' => 'px',
'value' => '33',
),
'tablet' =>
array(
'unit' => 'px',
'value' => '',
),
'mobile' =>
array(
'unit' => 'px',
'value' => '33',
),
),
'header_main_height' => array(
'desktop' => array(
'unit' => 'px',
'value' => '90',
),
'tablet' => array(
'unit' => 'px',
'value' => '',
),
'mobile' => array(
'unit' => 'px',
'value' => '',
),
),
'header_bottom_height' => array(
'desktop' => array(
'unit' => 'px',
'value' => '55',
),
'tablet' => array(
'unit' => 'px',
'value' => '',
),
'mobile' => array(
'unit' => 'px',
'value' => '',
),
),
'header_sidebar_animate' => 'menu_sidebar_dropdown',
'header_nav-icon_align' => array(
'desktop' => 'right',
'tablet' => 'right',
'mobile' => 'right',
),
'header_primary-menu_align' => array(
'desktop' => 'right',
'tablet' => '',
'mobile' => '',
),
'footer_builder_panel' => array(
'desktop' =>
array(
'main' =>
array(
array(
'x' => '0',
'y' => '1',
'width' => '3',
'height' => '1',
'id' => 'footer-1',
),
array(
'x' => '3',
'y' => '1',
'width' => '3',
'height' => '1',
'id' => 'footer-2',
),
array(
'x' => '6',
'y' => '1',
'width' => '3',
'height' => '1',
'id' => 'footer-3',
),
array(
'x' => '9',
'y' => '1',
'width' => '3',
'height' => '1',
'id' => 'footer-4',
),
),
'bottom' =>
array(
array(
'x' => '0',
'y' => '1',
'width' => '6',
'height' => '1',
'id' => 'footer_copyright',
),
),
),
),
);
if ( ! $val && isset( $defaults[ $name ] ) ) {
return $defaults[ $name ];
}
return $val;
}