Viewing File: /home/fshjisk/udnos/wp-content/plugins/fusion-builder/front-end/templates/fusion-content-boxes.php

<?php
/**
 * Underscore.js template
 *
 * @package fusion-builder
 * @since 2.0
 */

?>
<script type="text/html" id="tmpl-fusion_content_boxes-shortcode">
	<div {{{ _.fusionGetAttributes( attr ) }}}>
		<style type="text/css">{{{ styles }}}</style>
	</div>
</script>
<script type="text/html" id="tmpl-fusion_content_box-shortcode">
<#
var output          = '',
	icon_output     = '',
	title_output    = '',
	content_output  = '',
	link_output     = '',
	heading         = '',
	heading_content = '',
	full_icon_size  = '',
	timeline        = '';

if ( values.image && '' !== values.image ) {
	icon_output  = '<div ' + _.fusionGetAttributes( attrShortcodeIcon ) + '>';
	icon_output += '<img src="' + values.image + '" width="' + values.image_width + '" height="' + values.image_height + '" alt="" />';
	icon_output += '</div>';
} else if ( values.icon ) {
	icon_output  = '<div ' + _.fusionGetAttributes( attrShortcodeIconParent ) + '>';
	icon_output += '<i ' + _.fusionGetAttributes( attrShortcodeIcon ) + '></i>';
	icon_output += '</div>';
	if ( values.outercirclebordercolor && values.outercirclebordersize && 0 !== parseFloat( values.outercirclebordersize ) ) {
		icon_output  = '<div ' + _.fusionGetAttributes( attrShortcodeIconParent ) + '>';
		icon_output += '<span ' + _.fusionGetAttributes( attrShortcodeIconWrapper ) + '>';
		icon_output += '<i ' + _.fusionGetAttributes( attrShortcodeIcon ) + '></i>';
		icon_output += '</span></div>';
	}
}

if ( '' !== values.title ) {
	title_output = '<h' + values.heading_size + _.fusionGetAttributes( attrContentBoxHeading ) + '>' + values.title + '</h' + values.heading_size +'>';
}

if ( 'right' === parentValues.icon_align && -1 !== jQuery.inArray( parentValues.layout, [ 'icon-on-side', 'icon-with-title', 'timeline-vertical', 'clean-horizontal' ] ) ) {
	heading_content = title_output + icon_output;
} else {
	heading_content = icon_output + title_output;
}

if ( '' !== values.link ) {
	heading_content = '<a ' + _.fusionGetAttributes( attrHeadingLink ) + '>' + heading_content + '</a>';
}

if ( '' !== heading_content ) {
	heading = '<div ' + _.fusionGetAttributes( attrHeadingWrapper ) + '>' + heading_content + '</div>';
}

if ( '' !== values.link && '' !== values.linktext ) {
	if ( 'text' === parentValues.link_type || 'button-bar' === parentValues.link_type ) {
		link_output  = '<div class="fusion-clearfix"></div>';
		link_output += '<a ' + _.fusionGetAttributes( attrReadMore ) + '>' + values.linktext + '</a>';
		link_output += '<div class="fusion-clearfix"></div>';
	} else if ( 'button' === parentValues.link_type ) {
		link_output  = '<div class="fusion-clearfix"></div>';
		link_output += '<a ' + _.fusionGetAttributes( attrButton ) + '><span class="fusion-button-text">' + values.linktext + '</span></a>';
		link_output += '<div class="fusion-clearfix"></div>';
	}
}

content_output  = '<div class="fusion-clearfix"></div>';

content_output += '<div ' + _.fusionGetAttributes( attrContentContainer ) + '>' + FusionPageBuilderApp.renderContent( values.element_content, cid, false ) + '</div>' + link_output;
output          = heading + content_output;

if ( values.icon && 'yes' === parentValues.icon_circle && 'timeline-horizontal' === parentValues.layout && '1' != parentValues.columns ) {
	timeline = '<div ' + _.fusionGetAttributes( attrShortcodeTimeline ) + '></div>';
}

if ( values.icon && 'yes' === parentValues.icon_circle && 'timeline-vertical' === parentValues.layout ) {
	timeline = '<div ' + _.fusionGetAttributes( attrShortcodeTimeline ) + '></div>';
}
#>
<style type="text/css">{{{ styles }}}</style>
<div {{{ _.fusionGetAttributes( attrContentWrapper ) }}}> {{{ output }}} {{{ timeline }}}</div>
</script>
Back to Directory File Manager