Files
HouseHub/index.php
T
percoandClaude Sonnet 4.6 2016407a43
Deploy HouseHub / deploy (push) Successful in 2s
Home: meaningful CTAs per module (Réviser, Griffonner, Cocher, Déballer)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-12 14:57:22 +02:00

118 lines
4.2 KiB
PHP

<?php
// Protection de la page : nécessite d'être connecté
require __DIR__ . '/includes/auth.php';
require_login('/login.php');
// Inclusion i18n (déjà fait dans header, mais par sécurité si besoin de tr() avant)
require_once __DIR__ . '/includes/i18n.php';
// Configuration de la page
$pageTitle = tr('home_title');
$activePage = "home";
// background géré par home.css via body[data-page="home"]
$pageCss = "/modules/home/home.css";
require __DIR__ . '/header.php';
// Override background si image personnalisée uploadée
$_fid = $_SESSION['user']['family_id'] ?? null;
$_has_custom_bg = false;
if ($_fid) {
foreach (glob('/uploads/home_bg_' . $_fid . '.*') as $_f) { $_has_custom_bg = true; break; }
}
if ($_has_custom_bg): ?>
<style>body[data-page="home"] { background-image: url('/home-bg.php?v=<?= filemtime($_f) ?>'); }</style>
<?php endif; ?>
<div class="pf-container">
<div class="pf-hero">
<h1><?= tr('home_welcome') ?></h1>
<p><?= tr('home_subtitle') ?></p>
<?php if (isset($_SESSION['user'])): ?>
<div class="pf-user-info" style="margin-top: 12px; font-weight: 500;">
<?= tr('home_logged_as') ?>
<strong><?= htmlspecialchars($_SESSION['user']['display_name'] ?? $_SESSION['user']['username']) ?></strong>
</div>
<?php endif; ?>
</div>
<section class="pf-section">
<h2 style="color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.6);"><?= tr('home_modules_title') ?></h2>
<?php $mods = $_SESSION['enabled_modules'] ?? ['calendar','budget','holidays','gifts','garage']; ?>
<div class="pf-modules-grid">
<?php if (in_array('calendar', $mods)): ?>
<a href="/family-calendar.php" class="pf-module-card">
<div class="pf-card-icon">📅</div>
<h3 class="pf-card-title"><?= tr('mod_calendar_name') ?></h3>
<div class="pf-card-desc"><?= tr('mod_calendar_desc') ?></div>
<span class="pf-card-cta"><?= tr('cta_open') ?></span>
</a>
<?php endif; ?>
<?php if (in_array('budget', $mods)): ?>
<a href="/budget.php" class="pf-module-card">
<div class="pf-card-icon">💰</div>
<h3 class="pf-card-title"><?= tr('mod_budget_name') ?></h3>
<div class="pf-card-desc"><?= tr('mod_budget_desc') ?></div>
<span class="pf-card-cta"><?= tr('cta_manage') ?></span>
</a>
<?php endif; ?>
<?php if (in_array('holidays', $mods)): ?>
<a href="/holidays.php" class="pf-module-card">
<div class="pf-card-icon">🏖️</div>
<h3 class="pf-card-title"><?= tr('mod_holidays_name') ?></h3>
<div class="pf-card-desc"><?= tr('mod_holidays_desc') ?></div>
<span class="pf-card-cta"><?= tr('cta_explore') ?></span>
</a>
<?php endif; ?>
<?php if (in_array('gifts', $mods)): ?>
<a href="/gift-list.php" class="pf-module-card">
<div class="pf-card-icon">🎁</div>
<h3 class="pf-card-title"><?= tr('mod_gifts_name') ?></h3>
<div class="pf-card-desc"><?= tr('mod_gifts_desc') ?></div>
<span class="pf-card-cta"><?= tr('cta_view_lists') ?></span>
</a>
<?php endif; ?>
<?php if (in_array('garage', $mods)): ?>
<a href="/garage.php" class="pf-module-card">
<div class="pf-card-icon">🚗</div>
<h3 class="pf-card-title"><?= tr('mod_garage_name') ?></h3>
<div class="pf-card-desc"><?= tr('mod_garage_desc') ?></div>
<span class="pf-card-cta"><?= tr('cta_service') ?></span>
</a>
<?php endif; ?>
<?php if (in_array('memo', $mods)): ?>
<a href="/memo.php" class="pf-module-card">
<div class="pf-card-icon">📝</div>
<h3 class="pf-card-title"><?= tr('mod_memo_name') ?></h3>
<div class="pf-card-desc"><?= tr('mod_memo_desc') ?></div>
<span class="pf-card-cta"><?= tr('cta_jot') ?></span>
</a>
<?php endif; ?>
<?php if (in_array('todo', $mods)): ?>
<a href="/todo.php" class="pf-module-card">
<div class="pf-card-icon">✅</div>
<h3 class="pf-card-title"><?= tr('mod_todo_name') ?></h3>
<div class="pf-card-desc"><?= tr('mod_todo_desc') ?></div>
<span class="pf-card-cta"><?= tr('cta_check') ?></span>
</a>
<?php endif; ?>
</div>
</section>
</div>
<?php
require __DIR__ . '/footer.php';
?>