feat(auth-firebase): implement Phase 2 integration - Firebase Auth, Session Sync, Favorites Grid, and Firestore Newsletter

This commit is contained in:
2026-05-21 14:14:10 +02:00
parent 548c7605bc
commit 21833fa05b
15 changed files with 1532 additions and 40 deletions
+6
View File
@@ -1,6 +1,12 @@
<?php
// Shared helper functions for the FlixCooks food blog.
if (session_status() === PHP_SESSION_NONE) {
session_start();
}
require_once __DIR__ . '/config.php';
function load_recipes(): array {
$path = __DIR__ . '/data/recipes.json';
if (!file_exists($path)) {