first commit

This commit is contained in:
2026-03-13 23:33:08 +01:00
commit 9ef71d5289
872 changed files with 57265 additions and 0 deletions

22
html/album.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
require '../vendor/autoload.php';
require './config.php';
$albumId = $_GET['id'];
print_r($album_id);
$images = immichRequest("$IMMICH_URL/api/albums/$albumId");
$loader = new \Twig\Loader\FilesystemLoader('../templates');
$twig = new \Twig\Environment($loader);
logData($_SERVER["HTTP_X_REAL_IP"] . ' - ' . 'Album ' . $images['albumName'] . ' wurde aufgerufen');
echo $twig->render('portfolio_album.twig', [
'images_data' => $images,
'immich_url' => $IMMICH_URL,
'web_url' => $WEB_URL,
'project_title' => $PROJECT_TITLE
]);