ACC SHELL

Path : /srv/www/vhosts/marevva/nadaciakrizovatka/parts/
File Upload :
Current File : /srv/www/vhosts/marevva/nadaciakrizovatka/parts/background-slider.php

<?php
	
	$backgrounds = $db->getAllItems( 'background' );
	$backgroundsCount = count( $backgrounds );
	
	//shuffle( $backgrounds );
	if ( $backgroundsCount > 0 )
	{
		$data = new stdClass();
		for ( $bi = 0; $bi < $backgroundsCount; $bi++ )
		{
			$background = $backgrounds[ $bi ];
			
			$data->background[ $bi ]->title = $background['title'];
			$data->background[ $bi ]->imgSrc = $backgroundImagesDir . '/full/' . $background['image'];
		}
		
		$data->showScript1 = false;
		$data->showScript2 = true;
		if ( $backgroundsCount > 1 )
		{
			$data->showScript1 = true;
			$data->showScript2 = false;
		}
		
		echo sprintt( $data, 'parts/background-slider.html' );
	}
	
?>

ACC SHELL 2018