Branding: Cleanup of old references since refactoring of logos compilation

This commit is contained in:
Molkobain
2021-09-21 15:12:05 +02:00
parent 03b728b394
commit 37585614ba

View File

@@ -41,23 +41,19 @@ class Branding
/** @var string Default logo */
public const DEFAULT_LOGO_TYPE = self::ENUM_LOGO_TYPE_MAIN_LOGO_FULL;
/** @var \string[][] Relative paths to the default/custom logos from the current environment folder */
/** @var \string[][] Relative paths to the logos from the current environment folder */
public static $aLogoPaths = [
self::ENUM_LOGO_TYPE_MAIN_LOGO_FULL => [
'default' => 'images/itop-logo.png',
'custom' => 'branding/main-logo-full.png',
],
self::ENUM_LOGO_TYPE_MAIN_LOGO_COMPACT => [
'default' => 'images/itop-logo-square.png',
'custom' => 'branding/main-logo-compact.png',
],
self::ENUM_LOGO_TYPE_PORTAL_LOGO => [
'default' => 'images/logo-itop-dark-bg.svg',
'custom' => 'branding/portal-logo.png',
],
self::ENUM_LOGO_TYPE_LOGIN_LOGO => [
'default' => 'images/itop-logo.png',
'custom' => 'branding/login-logo.png',
],
];