'dimension', 'remove_from_atts' => true, 'heading' => esc_attr__( 'Border Radius', 'fusion-builder' ), 'description' => __( 'Enter values including any valid CSS unit, ex: 10px.', 'fusion-builder' ), 'param_name' => 'border_radius', 'group' => esc_attr__( 'Design', 'fusion-builder' ), 'value' => [ 'border_radius_top_left' => '', 'border_radius_top_right' => '', 'border_radius_bottom_right' => '', 'border_radius_bottom_left' => '', ], ], ]; // Override params. foreach ( $args as $key => $value ) { if ( 'fusion_remove_param' === $value && isset( $params[0][ $key ] ) ) { unset( $params[0][ $key ] ); continue; } $params[0][ $key ] = $value; } return $params; } /** * Checks if all border radius values are defined and adds a unit if needed. * Sets default value if value is not set. * * @param array $border_radius Border radius values. * @return array */ public static function get_border_radius_array_with_fallback_value( $border_radius ) { return [ 'top_left' => isset( $border_radius['top_left'] ) ? fusion_library()->sanitize->get_value_with_unit( $border_radius['top_left'] ) : '0px', 'top_right' => isset( $border_radius['top_right'] ) ? fusion_library()->sanitize->get_value_with_unit( $border_radius['top_right'] ) : '0px', 'bottom_right' => isset( $border_radius['bottom_right'] ) ? fusion_library()->sanitize->get_value_with_unit( $border_radius['bottom_right'] ) : '0px', 'bottom_left' => isset( $border_radius['bottom_left'] ) ? fusion_library()->sanitize->get_value_with_unit( $border_radius['bottom_left'] ) : '0px', ]; } /** * Generates border radius CSS vars properties. * * @since 3.11 * @param array $args Element arguments. * @return string */ public static function get_border_radius_vars( $args ) { $style = ''; $border_radius_edges = [ 'border_radius_top_left' => 'border-top-left-radius', 'border_radius_top_right' => 'border-top-right-radius', 'border_radius_bottom_left' => 'border-bottom-left-radius', 'border_radius_bottom_right' => 'border-bottom-right-radius', ]; foreach ( $border_radius_edges as $key => $value ) { if ( isset( $args[ $key ] ) && $args[ $key ] ) { $style .= '--awb-' . $value . ':' . fusion_library()->sanitize->get_value_with_unit( $args[ $key ] ) . ';'; } } return $style; } }