to_css( 'hex' ); } /** * Sanitizes an rgba color value. * (part of the Kirki Toolkit). * * @param string $value The value to sanitize. * @return string */ public static function rgba( $value ) { return Fusion_Color::new_color( $value )->to_css( 'rgba' ); } /** * Sanitize colors. * (part of the Kirki Toolkit). * Determine if the current value is a hex or an rgba color and call the appropriate method. * * @since 1.0.0 * * @param string $value string hex or rgba color. * @return string */ public static function color( $value ) { $color_obj = Fusion_Color::new_color( $value ); $mode = ( is_array( $value ) ) ? 'rgba' : $color_obj->mode; return $color_obj->to_css( $mode ); } /** * Gets the rgba value of the $hex color. * (part of the Kirki Toolkit). * * @param string $hex The hex value of a color. * @param int $opacity Opacity level (1-100). * @return string */ public static function get_rgba( $hex = '#fff', $opacity = 100 ) { $color_obj = Fusion_Color::new_color( $hex ); $alpha = ( 1 < $opacity ) ? $opacity / 100 : $opacity; return $color_obj->get_new( 'alpha', $alpha )->to_css( 'rgba' ); } /** * Gets the rgb value of the $hex color. * (part of the Kirki Toolkit). * * @param string $hex The hex value of a color. * @param boolean $implode Whether we want to implode the values or not. * @return array|string */ public static function get_rgb( $hex, $implode = false ) { $color_obj = Fusion_Color::new_color( $hex ); if ( $implode ) { return $color_obj->to_css( 'rgb' ); } return array( $color_obj->red, $color_obj->green, $color_obj->blue, ); } /** * Strips the alpha value from an RGBA color string. * * @param string $rgba The RGBA color string. * @return string The corresponding RGB string. */ public static function rgba_to_rgb( $rgba ) { $color_obj = Fusion_Color::new_color( $rgba ); return $color_obj->to_css( 'rgb' ); } /** * Properly escape some characters in image URLs so that they may be properly used in CSS. * From W3C: * > Some characters appearing in an unquoted URI, * > such as parentheses, white space characters, single quotes (') and double quotes ("), * > must be escaped with a backslash so that the resulting URI value is a URI token: '\(', '\)'. * * @param string $url The URL to modify. */ public static function css_asset_url( $url ) { $url = esc_url_raw( $url ); $url = str_replace( '(', '\(', $url ); $url = str_replace( ')', '\)', $url ); $url = str_replace( '"', '\"', $url ); $url = str_replace( ' ', '\ ', $url ); $url = str_replace( "'", "\'", $url ); return $url; } /** * Removes the scheme of the passed URL to fit the current page. * * @param string $url The URL that needs sanitation. * @return string Full URL without scheme. */ public static function get_url_with_correct_scheme( $url ) { $url = set_url_scheme( $url ); return $url; } /** * Sanitizes a number value. * * @param string|int|float $value The value to sanitize. * @return float|int */ public static function number( $value ) { return filter_var( $value, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ); } /** * Orders an array like another one with the same keys. * * @since 1.0.0 * * @param array $to_be_ordered The array that should be ordered. * @param array $order_like The array that should be used to order $to_be_ordered. * * @return array The correctly ordered version of $to_be_ordered. */ public static function order_array_like_array( array $to_be_ordered, array $order_like ) { $ordered = array(); foreach ( $order_like as $key => $value ) { if ( array_key_exists( $key, $to_be_ordered ) ) { $ordered[ $key ] = $to_be_ordered[ $key ]; unset( $to_be_ordered[ $key ] ); } } return $ordered + $to_be_ordered; } /** * Sanitizes the envato token & refreshes the transients. * * @access public * @param string $value The token. * @return string */ public static function envato_token( $value ) { delete_transient( 'avada_is_envato_valid' ); if ( is_string( $value ) ) { return trim( $value ); } return ''; } /** * Adds CSS values. * * @static * @access public * @since 5.1.0 * @param array $values An array of CSS values. * @return string The combined value. */ public static function add_css_values( $values = array() ) { if ( ! is_array( $values ) || empty( $values ) ) { return '0'; } $units = array(); $numerics = array(); $should_calc = false; // Figure out what we're dealing with. foreach ( $values as $key => $value ) { if ( 'auto' === $value || 'inherit' === $value || 'initial' === $value ) { continue; } // Trim the value. $value = trim( $value ); $values[ $key ] = $value; // Detect if the value uses calc(). if ( false !== strpos( $value, 'calc' ) ) { $should_calc = true; } // Add unit to the array of units used. $unit = trim( Fusion_Sanitize::get_unit( $value ) ); if ( ! empty( $unit ) && ! in_array( $unit, $units ) ) { $units[] = $unit; } // Add numeric value to the array of numerics. $numerics[] = Fusion_Sanitize::number( $value ); } // Make sure there's 1 instance of each unit in the array. // We need that to figure out if we'll be using calc() or not below. $units = array_unique( $units ); // If we're using more than one units then we should use calc(). if ( 1 < count( $units ) ) { $should_calc = true; } // All values added use the same unit and no calc() is necessary. // We simply need to return the numeric sum with the defined value. if ( ! $should_calc ) { // No units, so just return the sum of all values. if ( 0 === count( $units ) ) { return array_sum( $numerics ); } // Add values and append the unit. return array_sum( $numerics ) . $units[0]; } // If we got this far then we need to use calc(). $result = ''; $i = 0; foreach ( $values as $value ) { // Only add + if this is not the first item in the calculations. if ( 0 < $i ) { $result .= ' + '; } $i++; if ( false !== strpos( $value, 'calc' ) ) { // Remove calc but keep the parentheses. This fixes a browser bug in older versions of some browsers // where nested calc values don't work. Leaving the parentheses has the exact same effect. $result .= str_replace( 'calc', '', $value ); continue; } $result .= $value; } // Remove multiple spaces. $result = str_replace( array( ' ', ' ', ' ', ' ' ), ' ', $result ); // A simple tweak to make sure that negative values are substracted. $result = str_replace( '+ -', ' - ', $result ); // The above might have resulted is a couple of double-spaces, so make them single again. $result = str_replace( ' ', ' ', $result ); // Put it all together and wrap it up. return 'calc(' . $result . ')'; } /** * Takes any valid CSS unit and converts to pixels. * * @static * @access public * @since 1.3.0 * @param string $value The CSS value. * @param string|int $body_font_size The body font-size, used to calculate em/rem. * @param string|int $screen_size In pixels. * @return string */ public static function units_to_px( $value, $body_font_size = 16, $screen_size = 1600 ) { $number = self::number( $value ); $units = self::get_unit( $value ); // Return the value as-is if in pixels. if ( 'px' === $units ) { return $value; } // Calculate size if em/rem. if ( 'em' === $units || 'rem' === $units ) { return intval( $number * $body_font_size ) . 'px'; } // Calculate size if using percent (%). if ( '%' === $units ) { return intval( $number * $screen_size / 100 ) . 'px'; } // Fallback to the value as-is. return $value; } }