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_toggles.php
<?php $output = $type = $size = $one_toggle = $color = $animation_type = $animation_duration = $animation_delay = $el_class = ''; extract( shortcode_atts( array( 'type' => '', 'size' => false, 'one_toggle' => false, 'skin' => 'custom', 'color' => '', 'animation_type' => '', 'animation_duration' => 1000, 'animation_delay' => 0, 'animation_reveal_clr' => '', 'el_class' => '', ), $atts ) ); $el_class = porto_shortcode_extract_class( $el_class ); if ( $type ) { $el_class .= ' ' . $type; } if ( $size ) { $el_class .= ' ' . $size; } if ( 'custom' == $skin && $color ) { $sc_class = 'toggles' . hash( 'md5', $color ); $el_class .= ' ' . $sc_class; $inline_style = '<style>'; if ( 'toggle-simple' == $type ) { $inline_style .= '.' . $sc_class . '.toggle-simple .toggle > label:after { background-color: ' . $color . ' }'; } else { $inline_style .= '.' . $sc_class . ' .toggle label { border-left-color: ' . $color . '; border-right-color: ' . $color . '; color: ' . $color . ' }'; $inline_style .= '.' . $sc_class . ' .toggle.active > label { background-color: ' . $color . '; border-color: ' . $color . '; color: #ffffff }'; $inline_style .= '.' . $sc_class . ' .toggle > label:after { background-color: ' . $color . ' }'; } $inline_style .= '</style>'; $output .= porto_filter_inline_css( $inline_style, false ); } if ( 'custom' != $skin ) { $el_class .= ' toggle-' . $skin; } $output .= '<div class="porto-toggles wpb_content_element ' . esc_attr( $el_class ) . '"'; if ( $animation_type ) { $output .= ' data-appear-animation="' . esc_attr( $animation_type ) . '"'; if ( $animation_delay ) { $output .= ' data-appear-animation-delay="' . esc_attr( $animation_delay ) . '"'; } if ( $animation_duration && 1000 != $animation_duration ) { $output .= ' data-appear-animation-duration="' . esc_attr( $animation_duration ) . '"'; } if ( false !== strpos( $animation_type, 'revealDir' ) ) { $output .= ' data-animation-reveal-clr="' . ( ! empty( $animation_reveal_clr ) ? esc_attr( $animation_reveal_clr ) : '' ) . '"'; } } $output .= ( $one_toggle ? ' data-view="one-toggle"' : '' ) . '>'; $output .= do_shortcode( $content ); $output .= '</div>'; echo porto_filter_output( $output );
Save
Cancel