astra_fb_lang_switcher_dynamic_css( string $dynamic_css, string $dynamic_css_filtered = '' )
Deprecating astra_fb_lang_switcher_dynamic_css function.
Description
Footer builder – Language switcher dynamic CSS.
See also
Parameters
- $dynamic_css
-
(string) (Required) Astra Dynamic CSS.
- $dynamic_css_filtered
-
(string) (Optional) Astra Dynamic CSS Filters.
Default value: ''
Return
(string)
Source
File: classes/deprecated/deprecated-functions.php
function astra_fb_lang_switcher_dynamic_css( $dynamic_css, $dynamic_css_filtered = '' ) {
if ( Astra_Addon_Builder_Helper::is_component_loaded( 'language-switcher', 'footer' ) ) {
$dynamic_css .= Astra_Language_Switcher_Component_Dynamic_CSS::astra_language_switcher_dynamic_css( 'footer' );
$selector = '.ast-footer-language-switcher-element[data-section="section-fb-language-switcher"], .ast-footer-language-switcher .ast-builder-language-switcher-layout-horizontal .ast-builder-language-switcher-menu';
$alignment = astra_get_option( 'footer-language-switcher-alignment' );
$desktop_alignment = ( isset( $alignment['desktop'] ) ) ? $alignment['desktop'] : '';
$tablet_alignment = ( isset( $alignment['tablet'] ) ) ? $alignment['tablet'] : '';
$mobile_alignment = ( isset( $alignment['mobile'] ) ) ? $alignment['mobile'] : '';
/**
* Copyright CSS.
*/
$css_output_desktop = array(
$selector => array(
'justify-content' => $desktop_alignment,
),
);
$css_output_tablet = array(
$selector => array(
'justify-content' => $tablet_alignment,
),
);
$css_output_mobile = array(
$selector => array(
'justify-content' => $mobile_alignment,
),
);
/* Parse CSS from array() */
$css_output = astra_parse_css( $css_output_desktop );
$css_output .= astra_parse_css( $css_output_tablet, '', astra_addon_get_tablet_breakpoint() );
$css_output .= astra_parse_css( $css_output_mobile, '', astra_addon_get_mobile_breakpoint() );
$dynamic_css .= $css_output;
}
return $dynamic_css;
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 3.6.2 | Introduced. |