OneExperienceKB/Template/header.php
Michail Topaloudis 001c40d17a Initial Commit
2021-05-26 09:34:24 +01:00

38 lines
1.3 KiB
PHP

<?php global $themeOneExperienceKBConfig; ?>
<?php if (file_exists('plugins/Customizer')): ?>
<?php $_title = $this->render('OneExperienceKB:layout/header/customizerTitle', array(
'project' => isset($project) ? $project : null,
'task' => isset($task) ? $task : null,
'description' => isset($description) ? $description : null,
'title' => $title,
)); ?>
<?php else: ?>
<?php $_title = $this->render('header/title', array(
'project' => isset($project) ? $project : null,
'task' => isset($task) ? $task : null,
'description' => isset($description) ? $description : null,
'title' => $title,
)); ?>
<?php endif ?>
<?php $_top_right_corner = implode('&nbsp;', array(
$this->render('header/user_notifications'),
$this->render('header/creation_dropdown'),
$this->render('header/user_dropdown')
)); ?>
<?php if (!isset($themeOneExperienceKBConfig['backgroundColorHeader'])) : ?>
<header>
<?php else: ?>
<header style="background:<?= $themeOneExperienceKBConfig['backgroundColorHeader'] ?>">
<?php endif ?>
<div class="title-container">
<?= $_title ?>
</div>
<div class="board-selector-container">
<?php if (! empty($board_selector)): ?>
<?= $this->render('header/board_selector', array('board_selector' => $board_selector)) ?>
<?php endif ?>
</div>
<div class="menus-container">
<?= $_top_right_corner ?>
</div>
</header>