BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
wp-content
/
plugins
/
porto-functionality
/
shortcodes
/
templates
📤 Upload
📝 New File
📁 New Folder
Close
Editing: porto_single_icon.php
<?php $icon_type = $icon_img = $img_width = $icon = $icon_color = $icon_color_bg = $icon_size = $icon_style = $icon_border_style = $icon_border_radius = $icon_color_border = $icon_border_size = $icon_border_spacing = $icon_link = $el_class = $animation_type = $icon_margin = $target = $link_title = $rel = $css_trans = ''; extract( shortcode_atts( array( 'icon_type' => 'fontawesome', 'icon' => '', 'icon_simpleline' => '', 'icon_porto' => '', 'icon_size' => '', 'icon_color' => '', 'icon_style' => '', 'icon_color_bg' => '', 'icon_color_border' => '', 'icon_border_style' => '', 'icon_border_size' => '', 'icon_border_radius' => '', 'icon_border_spacing' => '', 'icon_link' => '', 'icon_margin' => '', 'animation_type' => '', 'animation_reveal_clr' => '', 'link_source' => '', 'link_dynamic_content' => '', 'el_class' => '', 'className' => '', ), $atts ) ); switch ( $icon_type ) { case 'simpleline': $icon = $icon_simpleline; break; case 'porto': $icon = $icon_porto; break; } if ( $className ) { if ( $el_class ) { $el_class .= ' ' . $className; } else { $el_class = $className; } } if ( 'none' !== $animation_type && $animation_type ) { $css_trans = 'data-appear-animation="' . esc_attr( $animation_type ) . '"'; if ( false !== strpos( $animation_type, 'revealDir' ) ) { $css_trans .= ' data-animation-reveal-clr="' . ( ! empty( $animation_reveal_clr ) ? esc_attr( $animation_reveal_clr ) : '' ) . '"'; } } $output = $style = $link_suffix = $link_prefix = $target = $href = $icon_align_style = ''; if ( 'dynamic' == $link_source && $link_dynamic_content && ! empty( $link_dynamic_content['source'] ) ) { $field_name = ''; if ( 'post' == $link_dynamic_content['source'] ) { if ( isset( $link_dynamic_content['post_info'] ) ) { $field_name = $link_dynamic_content['post_info']; } } else { if ( isset( $link_dynamic_content[ $link_dynamic_content['source'] ] ) ) { $field_name = $link_dynamic_content[ $link_dynamic_content['source'] ]; } } if ( $field_name ) { $icon_link = apply_filters( 'porto_dynamic_tags_content', '', null, $link_dynamic_content['source'], $field_name ); } } if ( $icon_link ) { if ( is_array( $icon_link ) && isset( $icon_link['url'] ) ) { $url = $icon_link['url']; $target = isset( $icon_link['is_external'] ) && 'on' == $icon_link['is_external'] ? ' target="_blank"' : ''; $rel = isset( $icon_link['nofollow'] ) && 'on' == $icon_link['nofollow'] ? ' rel="nofollow' . ( $target ? ' noopener noreferrer' : '' ) . '"' : ( $target ? ' rel="noopener noreferrer"' : '' ); $link_prefix .= '<a href="' . esc_url( $url ) . '"' . $target . $rel . '>'; $link_suffix .= '</a>'; } elseif ( false === strstr( $icon_link, '|' ) && false === strstr( $icon_link, 'url:' ) ) { $link_prefix .= '<a href="' . esc_url( $icon_link ) . '">'; $link_suffix .= '</a>'; } elseif ( function_exists( 'vc_build_link' ) ) { $href = vc_build_link( $icon_link ); $url = ( isset( $href['url'] ) && $href['url'] ) ? $href['url'] : ''; $target = ( isset( $href['target'] ) && $href['target'] ) ? " target='" . esc_attr( trim( $href['target'] ) ) . "'" : ''; $link_title = ( isset( $href['title'] ) && $href['title'] ) ? " title='" . esc_attr( $href['title'] ) . "'" : ''; $rel = ( isset( $href['rel'] ) && $href['rel'] ) ? " rel='" . esc_attr( $href['rel'] ) . "'" : ''; $link_prefix .= '<a href="' . esc_url( $url ) . '"' . $target . $link_title . $rel . '>'; $link_suffix .= '</a>'; } } if ( $icon_color ) { $style .= 'color:' . esc_attr( $icon_color ) . ';'; } if ( 'none' !== $icon_style ) { if ( $icon_color_bg ) { $style .= 'background:' . esc_attr( $icon_color_bg ) . ';'; } } if ( 'advanced' == $icon_style ) { if ( $icon_border_style ) { $style .= 'border-style:' . esc_attr( $icon_border_style ) . ';'; } if ( $icon_color_border ) { $style .= 'border-color:' . esc_attr( $icon_color_border ) . ';'; } if ( $icon_border_size ) { $style .= 'border-width:' . esc_attr( $icon_border_size ) . 'px;'; } if ( $icon_border_spacing ) { $style .= 'width:' . esc_attr( $icon_border_spacing ) . 'px;'; $style .= 'height:' . esc_attr( $icon_border_spacing ) . 'px;'; $style .= 'line-height:' . esc_attr( $icon_border_spacing ) . 'px;'; } if ( $icon_border_radius ) { $style .= 'border-radius:' . esc_attr( $icon_border_radius ) . 'px;'; } } if ( $icon_size ) { $style .= 'font-size:' . $icon_size . 'px;'; } if ( $icon_margin ) { $style .= 'margin-right:' . $icon_margin . 'px;'; } if ( $icon ) { if ( $link_prefix ) { $output .= str_replace( 'href="', 'class="'. esc_attr( apply_filters( 'porto_elements_wrap_css_class', 'porto-icon', $atts, 'single-icon' ) ) . ' ' . esc_attr( $icon . ' ' . $icon_style ) . ( $el_class ? ' ' . esc_attr( $el_class ) : '' ) . '" ' . $css_trans . ' style="' . esc_attr( $style ) . '" href="', $link_prefix ); $output .= $link_suffix; } else { $output .= "\n" . '<div class="'. esc_attr( apply_filters( 'porto_elements_wrap_css_class', 'porto-icon', $atts, 'single-icon' ) ) . ' ' . esc_attr( $icon_style ) . ( $el_class ? ' ' . esc_attr( $el_class ) : '' ) . '" ' . $css_trans . ' style="' . esc_attr( $style ) . '">'; $output .= "\n\t" . '<i class="' . esc_attr( $icon ) . '"></i>'; $output .= "\n" . '</div>'; } } echo porto_filter_output( $output );
Save
Cancel