Added public/private project status icon to dashboard.

This commit is contained in:
Dmitry Khomutov 2017-04-22 22:29:09 +07:00
commit 1b70128c83
No known key found for this signature in database
GPG key ID: 7EB36C9576F9ECB9
3 changed files with 19 additions and 3 deletions

View file

@ -94,10 +94,12 @@ class ProjectController extends PHPCensor\Controller
$this->view->perPage = $perPage;
$this->layout->title = $project->getTitle();
$this->layout->subtitle = '';
if (!empty($this->view->environment)) {
$this->layout->subtitle = $this->view->environment;
} else {
$this->layout->subtitle = $this->view->branch;
$this->layout->subtitle = '<i class="fa fa-gear"></i> ' . $this->view->environment;
} elseif (!empty($this->view->branch)) {
$this->layout->subtitle = '<i class="fa fa-code-fork"></i> ' . $this->view->branch;
}
return $this->view->render();