-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
36 lines (29 loc) · 1.73 KB
/
Copy pathconfig.php
File metadata and controls
36 lines (29 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
// ============================================================
// MEMORY BOOK — CONFIGURATION
// This is the only file you need to edit to set up your book.
// ============================================================
return [
// --- Your group ---
// 'group_name' appears on the cover, every page footer, and the form.
'group_name' => "Springfield High · Class of '84",
'class_year' => 1984, // Graduation year
'reunion_year' => 2026, // Year of the reunion / when the book is made
// Shown inside the cover crest. Keep these short (fits on a curved arc).
'school_name' => 'Springfield High School', // Top arc of crest
'school_location' => 'Springfield', // Bottom arc of crest
'school_motto' => '', // Optional — shown at base of crest
'school_founded' => 'Est. 1920', // Optional — shown at base of crest
// --- Submission form ---
'deadline' => 'July 30th, 2026', // Deadline badge on the form
'expected_count' => 40, // Approx. number of people (for "Still waiting" counter in admin)
'max_photos' => 2, // Max photos per submission (1–5)
// --- Notifications ---
// You'll get an email every time someone submits their page.
'notify_email' => 'you@example.com',
'from_email' => 'noreply@yourdomain.com', // Must match your server's domain to avoid spam filters
// --- Passwords ---
// Change both of these before sharing any links.
'admin_password' => 'CHANGEME', // Admin dashboard — keep this private
'book_password' => 'CHANGEME', // Memory book viewer — share with classmates when ready
];