Exemple #1
0
 public function viewAll()
 {
     $config = (require ROOT . '/config/main.php');
     $gallery = new Gallery();
     $gallery->fromJson(ROOT . $config['images']['json']);
     $view = new \View();
     echo $view->render('list.htm', 'text/html', ['items' => $gallery->toArray()]);
 }