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"]);
}
?>