diff --git a/lib/Gallery.php b/lib/Gallery.php index 814c48d..68d7706 100644 --- a/lib/Gallery.php +++ b/lib/Gallery.php @@ -2,11 +2,13 @@ final class Gallery { + public string $id; public string $label; public array $images = []; - public function __construct(string $label) + public function __construct(string $id, string $label) { + $this->id = $id; $this->label = $label; } diff --git a/lib/Portfolio.php b/lib/Portfolio.php index 93a3b8d..952cb0a 100644 --- a/lib/Portfolio.php +++ b/lib/Portfolio.php @@ -46,14 +46,14 @@ final class Portfolio if (!is_file($meta)) { continue; } - $galleries[] = $this->loadGallery($path, trim(file_get_contents($meta))); + $galleries[] = $this->loadGallery($path, $dir, trim(file_get_contents($meta))); } return $galleries; } - private function loadGallery(string $dir, string $title): Gallery + private function loadGallery(string $dir, string $id, string $title): Gallery { - $gallery = new Gallery($title); + $gallery = new Gallery($id, $title); foreach (array_diff(scandir($dir, SCANDIR_SORT_DESCENDING), [".", ".."]) as $file) { $path = "$dir/$file"; $meta = "$path.meta.txt"; diff --git a/views/index.phtml b/views/index.phtml index f7fd364..0d54ebe 100644 --- a/views/index.phtml +++ b/views/index.phtml @@ -7,12 +7,17 @@
-

+

+

label?>

-