diff options
author | RaindropsSys <contact@minteck.org> | 2023-06-11 16:47:34 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-06-11 16:47:34 +0200 |
commit | 6679588e43b0f694421d48e4ddb071972a127dca (patch) | |
tree | 2c25b58acd6f29d299d212b4db3f9dae8fdd19ad /includes/components/navigation.inc | |
parent | 2e7294c83c6388e3855ce787f0a18c20ed652131 (diff) | |
download | pluralconnect-6679588e43b0f694421d48e4ddb071972a127dca.tar.gz pluralconnect-6679588e43b0f694421d48e4ddb071972a127dca.tar.bz2 pluralconnect-6679588e43b0f694421d48e4ddb071972a127dca.zip |
Updated 11 files and added 2 files (automated)
Diffstat (limited to 'includes/components/navigation.inc')
-rw-r--r-- | includes/components/navigation.inc | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/includes/components/navigation.inc b/includes/components/navigation.inc index 478420d..4d0cc5e 100644 --- a/includes/components/navigation.inc +++ b/includes/components/navigation.inc @@ -118,7 +118,7 @@ $navigation_admin = [ "minimal" => false, "items" => [ time() >= 1686787200 ? null : [ - "name" => $pages["fronting"]["name"][$lang["_name"]], + "name" => "Front planner<span class='badge bg-warning text-black rounded-pill' style='position:relative;top:-1px; margin-left: 5px;'>EOL</span>", "icon" => "/assets/icons/fronting.svg", "invert" => true, "link" => "/-/fronting", @@ -126,6 +126,14 @@ $navigation_admin = [ "private" => false ], [ + "name" => $pages["evening"]["name"][$lang["_name"]] . (time() >= 1686787200 ? "" : "<span class='badge bg-info text-black rounded-pill' style='position:relative;top:-1px; margin-left: 5px;'>Beta</span>"), + "icon" => "/assets/icons/evening.svg", + "invert" => true, + "link" => "/-/evening", + "stepped" => null, + "private" => false + ], + [ "name" => $pages["profiles"]["name"][$lang["_name"]], "icon" => "/assets/icons/profiles.svg", "invert" => true, @@ -173,8 +181,8 @@ $navigation_admin = [ "stepped" => null, "private" => true ], - [ - "name" => $pages["computers"]["name"][$lang["_name"]] . "<span class='badge bg-warning text-black rounded-pill' style='position:relative;top:-1px; margin-left: 5px;'>EOL</span>", + time() >= 1688169600 ? null : [ + "name" => "Devices<span class='badge bg-warning text-black rounded-pill' style='position:relative;top:-1px; margin-left: 5px;'>EOL</span>", "icon" => "/assets/icons/computers.svg", "invert" => true, "link" => "/-/computers", |