function displayProductGallery($path, $id) { $images = array_diff(scandir($path), array('.', '..')); asort($images); echo \Tpl::view('components/product-images', [ 'images' => $images, 'i' => $id, 'path' => $path ]); } ?>