| Server IP : 178.212.43.201 / Your IP : 10.100.0.33 Web Server : Apache/2.4.37 (Oracle Linux Server) OpenSSL/1.1.1k System : Linux spa0007.srv.paxillus.pl 5.4.17-2136.355.3.1.el8uek.x86_64 #3 SMP Sat May 9 17:11:55 PDT 2026 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/suzuki/wp-content/plugins/beaver-builder-lite-version/includes/ |
Upload File : |
<div class="fl-builder-layer fl-builder-shape-layer fl-builder-<?php echo $position; ?>-edge-layer fl-builder-shape-<?php echo esc_attr( $shape_name ); ?>">
<svg class="<?php echo $svg_class; ?>" viewBox="<?php echo $view_box; ?>" preserveAspectRatio="<?php echo $preserve_aspect_ratio; ?>">
<defs>
<?php
$is_in_builder = FLBuilderModel::is_builder_active();
if ( $is_in_builder || 'gradient' === $settings->{ $prefix . 'fill_style' } ) {
$linear_gradient_id = "fl-row-$id-$prefix-linear-gradient";
$radial_gradient_id = "fl-row-$id-$prefix-radial-gradient";
$gradient_settings = $settings->{ $prefix . 'fill_gradient' };
$colors = $gradient_settings['colors'];
$stops = $gradient_settings['stops'];
// Radial Gradient
$parts = explode( ' ', $gradient_settings['position'] );
$cx = FLBuilderArt::get_int_for_position_name( $parts[0] );
$cy = FLBuilderArt::get_int_for_position_name( $parts[1] );
$r = ( .5 === $cx && .5 === $cy ) ? .5 : 1;
?>
<linearGradient id="<?php echo $linear_gradient_id; ?>" gradientUnits="objectBoundingBox" gradientTransform="rotate(<?php echo $gradient_settings['angle']; ?> .5 .5)">
<?php
foreach ( $colors as $i => $color ) {
$rgba = FLBuilderColor::rgba_values_for_color( $color );
?>
<stop offset="<?php echo $stops[ $i ] . '%'; ?>" stop-color="<?php echo $rgba['rgb']; ?>" stop-opacity="<?php echo $rgba['a']; ?>" />
<?php } ?>
</linearGradient>
<radialGradient id="<?php echo $radial_gradient_id; ?>" cx="<?php echo $cx; ?>" cy="<?php echo $cy; ?>" r="<?php echo $r; ?>">
<?php
foreach ( $colors as $i => $color ) {
$rgba = FLBuilderColor::rgba_values_for_color( $color );
?>
<stop offset="<?php echo $stops[ $i ] . '%'; ?>" stop-color="<?php echo $rgba['rgb']; ?>" stop-opacity="<?php echo $rgba['a']; ?>" />
<?php } ?>
</radialGradient>
<?php } // End if ?>
</defs>
<g class="fl-shape-content">
<?php echo $content; ?>
</g>
</svg>
</div>