File: /var/www/prestitravel.com/wp-content/themes/itfirm/elementor/templates/widgets/ct_icon/layout1.php
<?php
$default_settings = [
'icons' => '',
'align' => '',
];
$settings = array_merge($default_settings, $settings);
extract($settings);
$has_icon = ! empty( $settings['ct_icon'] );
if ( $has_icon ) {
$widget->add_render_attribute( 'i', 'class', $settings['ct_icon'] );
$widget->add_render_attribute( 'i', 'aria-hidden', 'true' );
}
$is_new = \Elementor\Icons_Manager::is_migration_allowed();
$html_id = ct_get_element_id($settings);
?>
<?php if(isset($icons) && !empty($icons) && count($icons)): ?>
<div class="ct-icon1 <?php echo esc_attr($style); ?> icon-align-<?php echo esc_attr($align); ?>">
<?php foreach ($settings['icons'] as $key => $value):
$icon_type = isset($value['icon_type']) ? $value['icon_type'] : '';
$icon_image = isset($value['icon_image']) ? $value['icon_image'] : '';
$icon_key = $widget->get_repeater_setting_key( 'ct_icon', 'icons', $key );
$has_icon = ! empty( $value['ct_icon'] );
$widget->add_render_attribute( $icon_key, [
'class' => $value['ct_icon'],
'aria-hidden' => 'true',
] );
$link_key = $widget->get_repeater_setting_key( 'title', 'value', $key );
if ( ! empty( $value['icon_link']['url'] ) ) {
$widget->add_render_attribute( $link_key, 'href', $value['icon_link']['url'] );
if ( $value['icon_link']['is_external'] ) {
$widget->add_render_attribute( $link_key, 'target', '_blank' );
}
if ( $value['icon_link']['nofollow'] ) {
$widget->add_render_attribute( $link_key, 'rel', 'nofollow' );
}
}
$link_attributes = $widget->get_render_attribute_string( $link_key ); ?>
<?php if ( $has_icon && $icon_type == 'icon' ) : ?>
<a class="<?php echo esc_attr($html_id.'-'.$key); ?> elementor-repeater-item-<?php echo esc_attr($value['_id']); ?>" <?php echo implode( ' ', [ $link_attributes ] ); ?>>
<?php
if($is_new):
\Elementor\Icons_Manager::render_icon( $value['ct_icon'], [ 'aria-hidden' => 'true' ] );
?>
<?php else: ?>
<i <?php ct_print_html($widget->get_render_attribute_string( $icon_key )); ?>></i>
<?php endif; ?>
</a>
<?php endif; ?>
<?php if ( !empty($icon_image['id']) && $icon_type == 'image' ) :
$img_icon = ct_get_image_by_size( array(
'attach_id' => $icon_image['id'],
'thumb_size' => 'full',
) );
$thumbnail_icon = $img_icon['thumbnail'];
?>
<a class="<?php echo esc_attr($html_id.'-'.$key); ?>" <?php echo implode( ' ', [ $link_attributes ] ); ?>>
<?php echo ct_print_html($thumbnail_icon); ?>
</a>
<?php endif; ?>
<?php endforeach; ?>
</div>
<?php endif; ?>