PATH:
home
/
letacommog
/
lenazen
/
wp-content
/
plugins
/
fusion-builder
/
inc
/
lib
/
inc
<?php /** * A collection of sanitization methods. * * @package Fusion-Library * @since 1.0.0 */ // Do not allow directly accessing this file. if ( ! defined( 'ABSPATH' ) ) { exit( 'Direct script access denied.' ); } /** * A collection of sanitization methods. */ class Fusion_Sanitize { /** * Sanitize values like for example 10px, 30% etc. * * @param string $value The value to sanitize. * @param false|string $fallback_unit A fallback unit to use in case no unit is found. * @return string */ public static function size( $value, $fallback_unit = false ) { // Trim the value. $value = trim( $value ); if ( in_array( $value, array( 'auto', 'inherit', 'initial' ), true ) ) { return $value; } // Return empty if there are no numbers in the value. // Prevents some CSS errors. if ( ! preg_match( '#[0-9]#', $value ) ) { return ''; } if ( false !== strpos( $value, 'calc' ) ) { return $value; } $unit = self::get_unit( $value ); if ( $fallback_unit && '' === $unit ) { $unit = ( true === $fallback_unit ) ? 'px' : $fallback_unit; } return self::number( $value ) . $unit; } /** * Return the unit of a given value. * * @since 1.0.0 * * @param string $value A value with unit. * @return string The unit of the given value. */ public static function get_unit( $value ) { $unit_used = ''; // Trim the value. $value = trim( $value ); // The array of valid units. $units = array( 'px', 'rem', 'em', '%', 'vmin', 'vmax', 'vh', 'vw', 'ex', 'cm', 'mm', 'in', 'pt', 'pc', 'ch' ); foreach ( $units as $unit ) { // Find what unit we're using. if ( false !== strpos( $value, $unit ) ) { $unit_used = $unit; break; } } return $unit_used; } /** * Adds a specified unit to a unitless value and keeps the value unchanged if a unit is present. * A forced unit replace can also be done. * * @param string $value A value like a margin setting etc., with or without unit. * @param string $unit A unit that should be appended to unitless values. * @param string $unit_handling 'add': only add $unit if $value is unitless. * 'force_replace': replace the unit of $value with $unit. */ public static function get_value_with_unit( $value, $unit = 'px', $unit_handling = 'add' ) { $raw_values = array(); // Trim the value. $value = trim( $value ); if ( in_array( $value, array( 'auto', 'inherit', 'initial' ), true ) ) { return $value; } // Return empty if there are no numbers in the value. // Prevents some CSS errors. if ( ! preg_match( '#[0-9]#', $value ) ) { return; } // Explode if has multiple values. $values = explode( ' ', $value ); if ( is_array( $values ) && ! empty( $values ) ) { foreach ( $values as $value ) { $raw_value = self::number( $value ); if ( $value === $raw_value ) { $value = $raw_value . $unit; } elseif ( 'force_replace' === $unit_handling ) { $value = $raw_value . $unit; } $raw_values[] = $value; } return implode( ' ', $raw_values ); } $raw_value = self::number( $value ); if ( $value === $raw_value ) { return $raw_value . $unit; } if ( 'force_replace' === $unit_handling ) { return $raw_value . $unit; } return $value; } /** * Sanitises a HEX value. * (part of the Kirki Toolkit). * The way this works is by splitting the string in 6 substrings. * Each sub-string is individually sanitized, and the result is then returned. * * @param string $color The hex value of a color. * @return string */ public static function hex( $color ) { return Fusion_Color::new_color( $color )->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( self::get_unit( $value ) ); if ( ! empty( $unit ) && ! in_array( $unit, $units ) ) { $units[] = $unit; } // Add numeric value to the array of numerics. $numerics[] = self::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; } }
[+]
..
[-] fusion-icon.php
[edit]
[-] class-fusion-fusionredux.php
[edit]
[-] class-fusion-featured-image.php
[edit]
[-] class-fusion-dynamic-js-file.php
[edit]
[-] class-fusion-settings.php
[edit]
[-] class-fusion-updater.php
[edit]
[-] class-fusion-images.php
[edit]
[-] class-fusion-dynamic-css.php
[edit]
[-] class-fusion-sanitize.php
[edit]
[-] class-fusion-scripts.php
[edit]
[-] wc-functions.php
[edit]
[-] class-fusion-dynamic-css-helpers.php
[edit]
[-] class-fusion-dynamic-css-inline.php
[edit]
[-] class-fusion-patcher-apply-patch.php
[edit]
[+]
importer
[-] class-fusion-helper.php
[edit]
[-] class-fusion-color.php
[edit]
[+]
redux
[-] class-fusion-library-autoloader.php
[edit]
[-] class-fusion-envato-api.php
[edit]
[-] class-fusion-patcher-admin-notices.php
[edit]
[-] class-fusion-data.php
[edit]
[-] class-fusion-dynamic-js.php
[edit]
[-] class-fusion-patcher.php
[edit]
[-] class-fusion-patcher-admin-screen.php
[edit]
[-] class-fusion-dynamic-js-compiler.php
[edit]
[-] class-fusion-patcher-filesystem.php
[edit]
[-] class-fusion-patcher-client.php
[edit]
[-] class-fusion-filesystem.php
[edit]
[-] functions.php
[edit]
[-] class-fusion-admin-notice.php
[edit]
[-] class-fusion-privacy.php
[edit]
[-] class-fusion-dynamic-css-file.php
[edit]
[-] class-fusion-dynamic-js-separate.php
[edit]
[-] class-fusion-patcher-cache.php
[edit]
[-] class-fusion.php
[edit]
[-] class-fusion-multilingual.php
[edit]
[-] class-fusion-cache.php
[edit]
[+]
templates
[-] class-fusion-product-registration.php
[edit]
[-] class-fusion-options.php
[edit]
[-] class-fusion-patcher-checker.php
[edit]