_bootstrap.php 409 B

1234567891011
  1. <?php
  2. /**
  3. * _bootstrap.php — shared PHP initialisation included at the top of every page.
  4. *
  5. * Keep this file minimal. It must be safe to include before any output,
  6. * including on pure-API endpoints like generate_planning_report.php.
  7. */
  8. // Single source of truth for the application timezone.
  9. // Tasmania observes AEST (UTC+10) / AEDT (UTC+11) in summer.
  10. date_default_timezone_set('Australia/Hobart');