![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/themes/kicker/theme-options/ |
<?php // Add theme-specific fonts, vars and colors to the custom CSS if ( ! function_exists( 'kicker_add_css_vars' ) ) { add_filter( 'kicker_filter_get_css', 'kicker_add_css_vars', 1, 2 ); function kicker_add_css_vars( $css, $args ) { // Add fonts settings to css variables if ( isset( $css['fonts'] ) && isset( $args['fonts'] ) ) { $fonts = $args['fonts']; if ( is_array( $fonts ) && count( $fonts ) > 0 ) { $tmp = ":root {\n"; foreach( $fonts as $tag => $font ) { if ( is_array( $font ) ) { $tmp .= "--theme-font-{$tag}_font-family: " . ( ! empty( $font['font-family'] ) && ! kicker_is_inherit( $font['font-family'] ) ? kicker_prepare_css_value( $font['font-family'] ) : 'inherit' ) . ";\n" . "--theme-font-{$tag}_font-size: " . ( ! empty( $font['font-size'] ) && ! kicker_is_inherit( $font['font-size'] ) ? kicker_prepare_css_value( $font['font-size'] ) : 'inherit' ) . ";\n" . "--theme-font-{$tag}_line-height: " . ( ! empty( $font['line-height'] ) && ! kicker_is_inherit( $font['line-height'] ) ? $font['line-height'] : 'inherit' ) . ";\n" . "--theme-font-{$tag}_font-weight: " . ( ! empty( $font['font-weight'] ) && ! kicker_is_inherit( $font['font-weight'] ) ? $font['font-weight'] : 'inherit' ) . ";\n" . "--theme-font-{$tag}_font-style: " . ( ! empty( $font['font-style'] ) && ! kicker_is_inherit( $font['font-style'] ) ? $font['font-style'] : 'inherit' ) . ";\n" . "--theme-font-{$tag}_text-decoration: " . ( ! empty( $font['text-decoration'] ) && ! kicker_is_inherit( $font['text-decoration'] ) ? $font['text-decoration'] : 'inherit' ) . ";\n" . "--theme-font-{$tag}_text-transform: " . ( ! empty( $font['text-transform'] ) && ! kicker_is_inherit( $font['text-transform'] ) ? $font['text-transform'] : 'inherit' ) . ";\n" . "--theme-font-{$tag}_letter-spacing: " . ( ! empty( $font['letter-spacing'] ) && ! kicker_is_inherit( $font['letter-spacing'] ) ? kicker_prepare_css_value( $font['letter-spacing'] ) : 'inherit' ) . ";\n" . "--theme-font-{$tag}_margin-top: " . ( ! empty( $font['margin-top'] ) && ! kicker_is_inherit( $font['margin-top'] ) ? kicker_prepare_css_value( $font['margin-top'] ) : 'inherit' ) . ";\n" . "--theme-font-{$tag}_margin-bottom: " . ( ! empty( $font['margin-bottom'] ) && ! kicker_is_inherit( $font['margin-bottom'] ) ? kicker_prepare_css_value( $font['margin-bottom'] ) : 'inherit' ) . ";\n"; } } $css['fonts'] = $tmp . "\n}\n" . $css['fonts']; } } // Add theme-specific values to css variables if ( isset( $css['vars'] ) && isset( $args['vars'] ) ) { $vars = $args['vars']; if ( is_array( $vars ) && count( $vars ) > 0 ) { $tmp = ":root {\n"; // Set a default value for the sidebar proportional (if absent) if ( ! isset( $vars['sidebar_proportional'] ) ) { $vars['sidebar_proportional'] = 1; } // Set a new name for the original value of the sidebar gap if ( isset( $vars['sidebar_gap'] ) ) { $vars['sidebar_gap_width'] = kicker_prepare_css_value( $vars['sidebar_gap'] ); } // Remove calculated values from css variables $exclude = apply_filters( 'kicker_filter_exclude_theme_vars', array( 'sidebar_gap' ) ); //Old case: array( 'sidebar_width', 'sidebar_gap' ) // Add rest values to css variables foreach ( $vars as $var => $value ) { if ( ! in_array( $var, $exclude ) ) { $tmp .= "--theme-var-{$var}: " . ( empty( $value ) ? 0 : $value ) . ";\n"; } } $css['vars'] = $tmp . "\n}\n" . $css['vars']; } } // Add theme-specific colors to css variables if ( isset( $css['colors'] ) && isset( $args['colors'] ) ) { $colors = $args['colors']; if ( is_array( $colors ) && count( $colors ) > 0 ) { $tmp = ".scheme_{$args['scheme']}, body.scheme_{$args['scheme']} {\n"; foreach ( $colors as $color => $value ) { $tmp .= "--theme-color-{$color}: {$value};\n"; } $css['colors'] = $tmp . "\n}\n" . $css['colors']; } } return $css; } }