PATH:
home
/
fengshp
/
www
/
wp-content
/
themes
/
themify-ultra
/
themify
/
themify-builder
/
templates
<?php /** * Template Link Block * * This template can be overridden by copying it to your child_theme_folder/themify-builder/template-link-block.php. * * Access original fields: $args['mod_settings'] * @author Themify */ defined( 'ABSPATH' ) || exit; $mod_name=$args['mod_name']; $element_id=$args['module_ID']; $fields_args=$args['mod_settings']+ array( 'shape'=>'normal', 'lb_layout'=>'icon-center', 'style'=>'solid', 'heading'=>'', 'blurb'=>'', 'nofollow_link'=>'', 'label'=>'', 'link'=>'', 'icon_type' => 'icon', 'icon'=>'', 'image'=>'', 'i_w'=>'', 'i_h'=>'', 'link_options'=>false, 'lightbox_width'=>'', 'lightbox_height'=>'', 'lightbox_width_unit'=>'px', 'lightbox_height_unit'=>'px', 'color'=>'tb_default_color', 'title'=>'', 'animation_effect'=>'', 'css_class'=>'', 'disp_icon_btm' => false ); $container_class=apply_filters('themify_builder_module_classes', array( 'module', 'module-' . $mod_name, $element_id, $fields_args['lb_layout'], $fields_args['style'], $fields_args['css_class'] ), $mod_name, $element_id, $fields_args); if(!empty($fields_args['global_styles']) && Themify_Builder::$frontedit_active===false) { $container_class[]=$fields_args['global_styles']; } if(!empty($fields_args['disp_icon_btm'])){ $container_class[] = 'icon_disp_btm'; } $container_props=apply_filters('themify_builder_module_container_props', self::parse_animation_effect($fields_args, array( 'class'=>implode(' ', $container_class), )), $fields_args, $mod_name, $element_id); if(Themify_Builder::$frontedit_active===false) { $container_props['data-lazy']=1; } Themify_Builder_Model::load_color_css($fields_args['color']); self::sticky_element_props($container_props, $fields_args); ?> <!-- module link_block --> <div <?php echo themify_get_element_attributes($container_props); ?>> <?php $container_props=$container_class=$args=null; $link_attr=array(); $link_css_clsss=array('tb_link_block_container ui ' . $fields_args['color']); if ($fields_args['shape']!=='normal') { $link_css_clsss[] = $fields_args['shape']; if ($fields_args['shape'] === 'rounded') { Themify_Builder_Model::load_appearance_css($fields_args['shape']); } } if($fields_args['link_options']==='lightbox') { $link_css_clsss[]='themify_lightbox'; if($fields_args['lightbox_width']!=='' || $fields_args['lightbox_height']!=='') { $lightbox_settings=array(); if($fields_args['lightbox_width']!=='') { $lightbox_settings[]=$fields_args['lightbox_width'] . $fields_args['lightbox_width_unit']; } if($fields_args['lightbox_height']!=='') { $lightbox_settings[]=$fields_args['lightbox_height'] . $fields_args['lightbox_height_unit']; } $link_attr[]=sprintf('data-zoom-config="%s"', implode('|', $lightbox_settings)); unset($lightbox_settings); } } elseif($fields_args['link_options']==='newtab') { $nofollow=$fields_args['nofollow_link']==='yes' ? 'nofollow ' : ''; $link_attr[]='target="_blank" rel="' . $nofollow . 'noopener"'; } if($fields_args['nofollow_link']==='yes' && $fields_args['link_options']!=='newtab') { $link_attr[]='rel="nofollow"'; } $tag = !empty($fields_args['link']) ? 'a' : 'span'; if('a'===$tag) { $link_attr[]='href="'.esc_url($fields_args['link']).'"'; if(!empty($fields_args['title'])){ $link_attr[]='title="'.esc_attr($fields_args['title']).'"'; } } $link_attr[]='class="'.implode(' ', $link_css_clsss).'"'; ?> <<?php echo $tag.' ',implode(' ', $link_attr) ?>> <?php if ('icon'===$fields_args['icon_type'] && $fields_args['icon']!==''): ?> <div class="tf-lb-icon"> <em class="tb_link_block_icon tf_inline_b"><?php echo themify_get_icon($fields_args['icon'])?></em> </div> <?php elseif ('image' === $fields_args['icon_type'] && $fields_args['image'] !=='' ) : echo themify_get_image( [ 'class' => 'tf_vmiddle tf_box tb_link_block_img', 'src' => $fields_args['image'], 'w' => $fields_args['i_w'], 'h' => $fields_args['i_h'], 'alt' => $fields_args['title'] ?? null ] ); endif; ?> <div class="tf-lb-content"> <?php if(!empty($fields_args['heading'])): ?> <div class="tb_link_block_heading"><?php echo $fields_args['heading'] ?></div> <?php endif; ?> <?php if(!empty($fields_args['blurb'])): ?> <div class="tb_link_block_blurb"><?php echo $fields_args['blurb'] ?></div> <?php endif; ?> </div> </<?php echo $tag; ?>> </div> <!-- /module buttons -->
[+]
..
[-] template-accordion.php
[edit]
[-] template-login.php
[edit]
[-] template-builder-editor.php
[edit]
[-] template-copyright.php
[edit]
[-] template-testimonial-grid.php
[edit]
[-] template-callout.php
[edit]
[-] template-gallery-lightboxed.php
[edit]
[-] template-plain-text.php
[edit]
[-] template-map.php
[edit]
[-] template-buttons.php
[edit]
[-] template-alert.php
[edit]
[-] template-service-menu.php
[edit]
[-] template-layout-part.php
[edit]
[-] template-gallery-grid.php
[edit]
[-] template-tab.php
[edit]
[-] template-social-share.php
[edit]
[-] post_in_lightbox.php
[edit]
[-] template-widget.php
[edit]
[-] template-testimonial-slider.php
[edit]
[-] template-slider-blog.php
[edit]
[-] template-icon.php
[edit]
[-] template-blog.php
[edit]
[-] template-box.php
[edit]
[-] builder-output.php
[edit]
[-] template-menu.php
[edit]
[-] template-divider.php
[edit]
[-] template-gallery-showcase.php
[edit]
[-] template-page-break.php
[edit]
[-] builder-layout-part-output.php
[edit]
[-] template-feature.php
[edit]
[-] template-signup-form.php
[edit]
[-] template-gallery.php
[edit]
[-] template-video.php
[edit]
[-] template-lottie.php
[edit]
[-] template-slider-image.php
[edit]
[-] template-text.php
[edit]
[-] template-slider-text.php
[edit]
[-] template-link-block.php
[edit]
[-] template-testimonial-slider-content.php
[edit]
[-] template-toc.php
[edit]
[-] template-image.php
[edit]
[-] template-fancy-heading.php
[edit]
[-] template-slider-video.php
[edit]
[-] template-overlay-content.php
[edit]
[-] template-optin.php
[edit]
[-] template-widgetized.php
[edit]
[-] template-code.php
[edit]
[-] template-gallery-slider.php
[edit]
[-] template-slider.php
[edit]
[-] template-star.php
[edit]