# shopbuilder/2.1.11/templates/global/slider-footer.php

ShopBuilder – WooCommerce Builder For Elementor, version 2.1.11. 32 lines.

- Page: https://pluginprobe.com/plugins/shopbuilder/2.1.11/code/templates/global/slider-footer.php
- Raw: https://pluginprobe.com/plugins/shopbuilder/2.1.11/raw/templates/global/slider-footer.php
- Modified: 2024-05-20T04:08:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/shopbuilder/2.1.11/code/templates/global/slider-footer.php#L10-L20`.

```php
<?php
/**
 * Template variables:
 *
 * @var $controllers  array settings as array
 * @var $left_arrow   string Arrow icon html
 * @var $right_arrow  string Arrow icon html
 */

use RadiusTheme\SB\Helpers\Fns;

// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
	exit( 'This script cannot be accessed directly.' );
}

if ( ! empty( $controllers['show_arrows'] ) ) {  ?>
	<!-- If we need navigation buttons -->
	<span class="rtsb-slider-btn button-left rtsb-icon-angle-left">
		<?php Fns::print_icon( $left_arrow ); ?>
	</span>
	<span class="rtsb-slider-btn button-right rtsb-icon-angle-right">
		<?php Fns::print_icon( $right_arrow ); ?>
	</span>
<?php } ?>
<?php if ( ! empty( $controllers['show_dots'] ) ) { ?>
	<!-- If we need pagination -->
	<div class="rtsb-slider-pagination"></div>
<?php } ?>

</div>

```
