diff --git a/sources/application/Branding.php b/sources/application/Branding.php index caa14a274..494fad67d 100644 --- a/sources/application/Branding.php +++ b/sources/application/Branding.php @@ -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', ], ];