make logo configurable with env vars

This commit is contained in:
Fabian Hufenreuter 2025-01-10 17:14:27 +01:00
parent cbb1a95b64
commit c4bfe0624e
No known key found for this signature in database
2 changed files with 8 additions and 5 deletions

View File

@ -22,6 +22,9 @@ services:
LOCATION: Location
FACILITY: Facility
FACILITY_URL: http://localhost/
LOGO_URL: https://github.com/hybula/lookingglass/
LOGO: '<h2 style="color: #000000;">Company Looking Glass</h2>'
LOGO_DARK: '<h2 style="color: #ffffff;">Company Looking Glass</h2>'
IPV4_ADDRESS: 127.0.0.1
IPV6_ADDRESS: ::1
MAPS_QUERY: Amsterdam

View File

@ -5,11 +5,11 @@ use Hybula\LookingGlass;
const LG_TITLE = 'Looking Glass';
// Define a logo, this can be HTML too, see the other example for an image;
const LG_LOGO = '<h2 style="color: #000000;">Company Looking Glass</h2>';
const LG_LOGO_DARK = '<h2 style="color: #ffffff;">Company Looking Glass</h2>';
define('LG_LOGO', getenv('LOGO'));
define('LG_LOGO_DARK', getenv('LOGO_DARK'));
// Define the URL where the logo points to;
const LG_LOGO_URL = 'https://github.com/hybula/lookingglass/';
// Define the URL where the logo points to;
define('LG_LOGO_URL', getenv('LOGO_URL'));
// Theme mode;
const LG_THEME = 'auto';