1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- $_title = $this->render("header/title", [
- "project" => isset($project) ? $project : null,
- "task" => isset($task) ? $task : null,
- "description" => isset($description) ? $description : null,
- "title" => $title,
- ]);
- $_top_right_corner = implode(" ", [
- $this->render("header/user_notifications"),
- $this->render("header/creation_dropdown"),
- $this->render("header/user_dropdown")
- ]);
- $branding = null;
- if (isset($project) && isset($project["id"])) {
- $branding = $this->projectBrandingHelper->getBrandingByProjectId($project["id"]);
- }
- ?>
- <header>
- <div class="title-container">
- <?php if (isset($branding["enabled"]) && $branding["enabled"] == 1 && !empty($branding["logo_url"])): ?>
- <a href="<?= $this->url->to('DashboardController', 'show') ?>" style="border-bottom: 2px solid <?= $branding['accent_color'] ?>;">
- <img src="<?= $branding['logo_url'] ?>" alt="<?= t('Logo') ?>" height="30">
- </a>
- <?php else: ?>
- <?= $_title ?>
- <?php endif ?>
- </div>
- <div class="board-selector-container">
- <?php if (! empty($board_selector)): ?>
- <?= $this->render("header/board_selector", ["board_selector" => $board_selector]) ?>
- <?php endif ?>
- </div>
- <div class="menus-container">
- <?= $_top_right_corner ?>
- </div>
- </header>
|