✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ webm004.cluster127.gra.hosting.ovh.net ​🇻​♯➤ 6.18.42-ovh-vps-grsec-zfs+ #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 54.36.91.62 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.191
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ _dyuweyrj4,_dyuweyrj4r,dl

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/docteuh/www/user-meta/templates/previews//fusion-button-preview.php
<?php
/**
 * Underscore.js template.
 *
 * @package fusion-builder
 */

$fusion_settings = awb_get_fusion_settings();

$type         = strtolower( $fusion_settings->get( 'button_type' ) );
$gradient_top = $gradient_bottom = $accent_color = $border_color = $border_width = $border_radius = '';

$gradient_top    = Fusion_Color::new_color( $fusion_settings->get( 'button_gradient_top_color' ) )->is_needs_adjustment() ? '#f8f8f8' : $fusion_settings->get( 'button_gradient_top_color' );
$gradient_bottom = Fusion_Color::new_color( $fusion_settings->get( 'button_gradient_bottom_color' ) )->is_needs_adjustment() ? '#f8f8f8' : $fusion_settings->get( 'button_gradient_bottom_color' );
$accent_color    = Fusion_Color::new_color( $fusion_settings->get( 'button_accent_color' ) )->is_needs_adjustment() ? '#f8f8f8' : $fusion_settings->get( 'button_accent_color' );
$border_color    = Fusion_Color::new_color( $fusion_settings->get( 'button_border_color' ) )->is_needs_adjustment() ? '#f8f8f8' : $fusion_settings->get( 'button_border_color' );
$border_width    = $fusion_settings->get( 'button_border_width', 'top' ) . ' ' . $fusion_settings->get( 'button_border_width', 'right' ) . ' ' . $fusion_settings->get( 'button_border_width', 'bottom' ) . ' ' . $fusion_settings->get( 'button_border_width', 'left' );
$text_transform  = $fusion_settings->get( 'button_text_transform' );
?>

<script type="text/template" id="fusion-builder-block-module-button-preview-template">

	<#
	var button_style  = '';
	var button_icon   = '';
	var border_radius, border_radius_top_left, border_radius_top_right, border_radius_bottom_right, border_radius_bottom_left;


	if ( 'undefined' !== typeof params.border_radius_top_left && '' !== params.border_radius_top_left ) {
		border_radius_top_left = params.border_radius_top_left;
	} else {
		border_radius_top_left = '<?php echo esc_attr( $fusion_settings->get( 'button_border_radius', 'top_left' ) ); ?>';
	}
	if ( 'undefined' !== typeof params.border_radius_top_right && '' !== params.border_radius_top_right ) {
		border_radius_top_right = params.border_radius_top_right;
	} else {
		border_radius_top_right = '<?php echo esc_attr( $fusion_settings->get( 'button_border_radius', 'top_right' ) ); ?>';
	}
	if ( 'undefined' !== typeof params.border_radius_bottom_right && '' !== params.border_radius_bottom_right ) {
		border_radius_bottom_right = params.border_radius_bottom_right;
	} else {
		border_radius_bottom_right = '<?php echo esc_attr( $fusion_settings->get( 'button_border_radius', 'bottom_right' ) ); ?>';
	}
	if ( 'undefined' !== typeof params.border_radius_bottom_left && '' !== params.border_radius_bottom_left ) {
		border_radius_bottom_left = params.border_radius_bottom_left;
	} else {
		border_radius_bottom_left = '<?php echo esc_attr( $fusion_settings->get( 'button_border_radius', 'bottom_left' ) ); ?>';
	}
	border_radius = border_radius_top_left + ' ' + border_radius_top_right + ' ' + border_radius_bottom_right + ' ' + border_radius_bottom_left;

	if ( '' === params.type ) {
		var button_type = '<?php echo esc_attr( $type ); ?>';
	} else {
		var button_type = params.type;
	}

	if ( '' === params.size || ! params.size ) {
		var button_size = 'large';
	} else {
		var button_size = params.size;
	}

	if ( 'default' === params.color ) {
		var accent_color      = '<?php echo esc_attr( $accent_color ); ?>';
		var border_color      = '<?php echo esc_attr( $border_color ); ?>';
		var border_width      = '<?php echo esc_attr( $border_width ); ?>';
		var button_background = 'linear-gradient(<?php echo esc_attr( $gradient_top ); ?>, <?php echo esc_attr( $gradient_bottom ); ?>)';

	} else if ( 'custom' === params.color ) {
		var accent_color = ( params.accent_color ) ? params.accent_color : '<?php echo esc_attr( $accent_color ); ?>';
		var accent_color = ( params.border_color ) ? params.border_color : '<?php echo esc_attr( $border_color ); ?>';
		var border_color = accent_color;
		var border_width, border_top, border_right, border_bottom, border_left;

		if ( 'undefined' !== typeof params.border_top && '' !== params.border_top ) {
			border_top = params.border_top;
		} else {
			border_top = '<?php echo esc_attr( $fusion_settings->get( 'button_border_width', 'top' ) ); ?>';
		}
		if ( 'undefined' !== typeof params.border_right && '' !== params.border_right ) {
			border_right = params.border_right;
		} else {
			border_right = '<?php echo esc_attr( $fusion_settings->get( 'button_border_width', 'right' ) ); ?>';
		}
		if ( 'undefined' !== typeof params.border_bottom && '' !== params.border_bottom ) {
			border_bottom = params.border_bottom;
		} else {
			border_bottom = '<?php echo esc_attr( $fusion_settings->get( 'button_border_width', 'bottom' ) ); ?>';
		}
		if ( 'undefined' !== typeof params.border_left && '' !== params.border_left ) {
			border_left = params.border_left;
		} else {
			border_left = '<?php echo esc_attr( $fusion_settings->get( 'button_border_width', 'left' ) ); ?>';
		}
		border_width = border_top + ' ' + border_right + ' ' + border_bottom + ' ' + border_left;

		var gradient_top = ( params.button_gradient_top_color ) ? params.button_gradient_top_color : '<?php echo esc_attr( $gradient_top ); ?>';
		var gradient_bottom = ( params.button_gradient_bottom_color ) ? params.button_gradient_bottom_color : '<?php echo esc_attr( $gradient_bottom ); ?>';

		if ( '' !== gradient_top && '' !== gradient_bottom ) {
			var button_background = 'linear-gradient(' + gradient_top + ', ' + gradient_bottom + ')';
		} else {
			var button_background = gradient_top;
		}

		if ( ( '' === button_background || ( -1 !== gradient_top.indexOf( 'rgba(255,255,255' ) && -1 !== gradient_bottom.indexOf( 'rgba(255,255,255' ) ) ) && ( '#ffffff' === accent_color || -1 !== accent_color.indexOf( 'rgba(255,255,255' ) ) ) {
			button_background = '#dddddd';
		}

	} else {
		var button_color = params.color;
	}

	if ( 'undefined' !== typeof params.icon && '' !== params.icon ) {
		var button_icon = params.icon;
	} else {
		var button_icon = 'no-icon';
	}

	if ( 'undefined' !== typeof button_icon && -1 === button_icon.trim().indexOf( ' ' ) ) {
		button_icon = 'fa ' + button_icon;
	}

	if ( '' === params.text_transform ) {
		var text_transform = '<?php echo esc_attr( $text_transform ); ?>';
	} else {
		var text_transform = params.text_transform;
	}
	#>

	<#
	if ( 'left' === params.icon_position ) {
		var buttonContent = '<span class="fusion-module-icon ' + button_icon + '"></span>' + params.element_content;
	} else {
		var buttonContent = params.element_content + '<span class="fusion-module-icon ' + button_icon + '" style="margin-left:0.5em;margin-right:0;"></span>';
	}
	#>

	<# if ( 'custom' === params.color || 'default' === params.color ) { #>

		<a class="fusion-button button-default button-{{ button_type }} button-{{ button_size }}" style="background: {{ button_background }}; border-radius: {{ border_radius }}; border-style: solid; border-width: {{ border_width }}; border-color: {{ border_color }}; color: {{ accent_color }}; text-transform: {{ text_transform }};"><span class="fusion-button-text">{{{ buttonContent }}}</span></a>

	<# } else { #>

		<a class="fusion-button button-default button-{{ button_type }} button-{{ button_size }} button-{{ button_color }}" style="border-radius: {{ border_radius }}; text-transform: {{ text_transform }};"><span class="fusion-button-text">{{{ buttonContent }}}</span></a>

	<# }#>
</script>


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
16 Sep 2026 3.26 PM
docteuh / users
0755
fusion-alert-preview.php
0.891 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-blog-preview.php
0.725 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-button-preview.php
7.256 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-chart-preview.php
0.706 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-checklist-preview.php
1.85 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-circles-info-preview.php
0.334 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-contact-form7-preview.php
0.388 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-content-boxes-preview.php
0.603 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-countdown-preview.php
2.428 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-counter-box-preview.php
0.464 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-default-preview.php
0.329 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-flipboxes-preview.php
0.465 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-font-awesome-preview.php
1.698 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-form-element-preview.php
0.64 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-form-preview.php
0.396 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-gallery-preview.php
0.353 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-google-map-preview.php
0.582 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-gravity-form-preview.php
0.385 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-image-before-after-preview.php
0.653 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-image-carousel-preview.php
1.271 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-image-frame-preview.php
0.842 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-layer-slider-preview.php
0.384 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-media-slider-preview.php
2.156 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-menu-anchor-preview.php
0.474 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-modal-preview.php
0.468 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-person-preview.php
0.49 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-post-slider-preview.php
0.729 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-pricing-table-preview.php
0.599 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-progress-preview.php
0.374 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-recent-posts-preview.php
1.123 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-revolution-slider-preview.php
0.394 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-search-preview.php
0.328 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-section-separator-preview.php
1.38 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-separator-preview.php
2.096 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-share-preview.php
0.357 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-sharingbox-preview.php
0.355 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-soundcloud-preview.php
0.354 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-tabs-preview.php
1.225 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-tagline-preview.php
0.595 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-testimonials-preview.php
1.41 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-text-preview.php
2.853 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-title-preview.php
2.681 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-toggles-preview.php
1.232 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-video-preview.php
0.343 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-vimeo-preview.php
0.38 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-widget-preview.php
0.801 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-woo-shortcodes-preview.php
0.271 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
fusion-youtube-preview.php
0.416 KB
20 Nov 2023 7.12 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103225-20260901073835-20260901113623.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF