/
home
/
infinitibizsol
/
cashforcarsallen.com
/
wp-content
/
themes
/
blocksy
/
inc
/
components
/
File Upload :
llllll
Current File: /home/infinitibizsol/cashforcarsallen.com/wp-content/themes/blocksy/inc/components/back-to-top.php
<?php if (! function_exists('blocksy_output_back_to_top_link')) { function blocksy_output_back_to_top_link() { $type = blocksy_get_theme_mod('top_button_type', 'type-1'); $shape = blocksy_get_theme_mod('top_button_shape', 'square'); $alignment = blocksy_get_theme_mod('top_button_alignment', 'right'); $icon_source = blocksy_get_theme_mod('top_button_icon_source', 'default'); $svgs = [ 'type-1' => '<svg class="ct-icon" width="15" height="15" viewBox="0 0 20 20"><path d="M10,0L9.4,0.6L0.8,9.1l1.2,1.2l7.1-7.1V20h1.7V3.3l7.1,7.1l1.2-1.2l-8.5-8.5L10,0z"/></svg>', 'type-2' => '<svg class="ct-icon" width="15" height="15" viewBox="0 0 20 20"><path d="M18.1,9.4c-0.2,0.4-0.5,0.6-0.9,0.6h-3.7c0,0-0.6,8.7-0.9,9.1C12.2,19.6,11.1,20,10,20c-1,0-2.3-0.3-2.7-0.9C7,18.7,6.5,10,6.5,10H2.8c-0.4,0-0.7-0.2-1-0.6C1.7,9,1.7,8.6,1.9,8.3c2.8-4.1,7.2-8,7.4-8.1C9.5,0.1,9.8,0,10,0s0.5,0.1,0.6,0.2c0.2,0.1,4.6,3.9,7.4,8.1C18.2,8.7,18.3,9.1,18.1,9.4z"/></svg>', 'type-3' => '<svg class="ct-icon" width="15" height="15" viewBox="0 0 20 20"><path d="M10,0c0,0-4.4,3-4.4,9.6c0,0.1,0,0.2,0,0.4c-0.8,0.6-2.2,1.9-2.2,3c0,1.3,1.3,4,1.3,4L7.1,14l0.7,1.6h4.4l0.7-1.6l2.4,3.1c0,0,1.3-2.7,1.3-4c0-1.1-1.5-2.4-2.2-3c0-0.1,0-0.2,0-0.4C14.4,3,10,0,10,0zM10,5.2c0.8,0,1.5,0.7,1.5,1.5S10.8,8.1,10,8.1S8.5,7.5,8.5,6.7S9.2,5.2,10,5.2z M8.1,16.3c-0.2,0.2-0.3,0.5-0.3,0.8C7.8,18.5,10,20,10,20s2.2-1.4,2.2-2.9c0-0.3-0.1-0.6-0.3-0.8h-0.6c0,0.1,0,0.1,0,0.2c0,1-1.3,1.5-1.3,1.5s-1.3-0.5-1.3-1.5c0-0.1,0-0.1,0-0.2H8.1z"/></svg>', 'type-4' => '<svg class="ct-icon" width="15" height="15" viewBox="0 0 20 20"><path d="M2.3 15.2L10 7.5l7.7 7.6c.6.7 1.2.7 1.8 0 .6-.6.6-1.3 0-1.9l-8.6-8.6c-.2-.3-.5-.4-.9-.4s-.7.1-.9.4L.5 13.2c-.6.6-.6 1.2 0 1.9.6.8 1.2.7 1.8.1z"/></svg>', 'type-5' => '<svg class="ct-icon" width="15" height="15" viewBox="0 0 20 20"><path d="M1 17.5h18c.2 0 .4-.1.5-.2.2-.1.3-.2.4-.4.1-.2.1-.3.1-.5s-.1-.3-.2-.5l-9-13c-.2-.3-.5-.4-.8-.4-.4 0-.6.1-.8.4l-9 13c-.1.2-.2.3-.2.5s0 .4.1.5c.1.2.2.3.4.4s.3.2.5.2zm9-12.3l7.1 10.2H2.9L10 5.2z"/></svg>', 'type-6' => '<svg class="ct-icon" width="15" height="15" viewBox="0 0 20 20"><path d="M1 17.5h18c.2 0 .4-.1.5-.2.2-.1.3-.2.4-.4.1-.2.1-.3.1-.5s-.1-.3-.2-.5l-9-13c-.2-.3-.5-.4-.8-.4-.4 0-.6.1-.8.4l-9 13c-.1.2-.2.3-.2.5s0 .4.1.5c.1.2.2.3.4.4s.3.2.5.2z"/></svg>', ]; $class = 'ct-back-to-top'; $class .= ' ' . blocksy_visibility_classes(blocksy_get_theme_mod('back_top_visibility', [ 'desktop' => true, 'tablet' => true, 'mobile' => false, ])); $icon = $svgs[$type]; if (function_exists('blc_get_icon')) { if ($icon_source === 'custom') { $icon = blc_get_icon([ 'icon_descriptor' => blocksy_get_theme_mod( 'top_button_icon', ['icon' => 'blc blc-arrow-up-circle'] ), 'icon_container' => false, 'icon_html_atts' => [ 'class' => 'ct-icon', ] ]); } } ?> <a href="#main-container" class="<?php echo esc_attr($class) ?>" data-shape="<?php echo esc_attr($shape) ?>" data-alignment="<?php echo esc_attr($alignment) ?>" title="<?php echo esc_attr__('Go to top', 'blocksy') ?>" aria-label="<?php echo esc_attr__('Go to top', 'blocksy') ?>" hidden> <?php /** * Note to code reviewers: This line doesn't need to be escaped. * It can't be escaped with wp_kses_post() because it contains an SVG and is perfectly safe. */ echo $icon ?> </a> <?php } }
Copyright ©2k19 -
Hexid
|
Tex7ure