Adding a status indicator for each plugin on the build page, fixing ignores for PHPCPD
This commit is contained in:
parent
6053f0f748
commit
4037964d4c
6 changed files with 108 additions and 14 deletions
|
|
@ -35,6 +35,7 @@ class BuildController extends b8\Controller
|
|||
$data = array();
|
||||
$data['status'] = (int)$build->getStatus();
|
||||
$data['log'] = $this->cleanLog($build->getLog());
|
||||
$data['plugins'] = json_decode($build->getPlugins(), true);
|
||||
$data['created'] = !is_null($build->getCreated()) ? $build->getCreated()->format('Y-m-d H:i:s') : null;
|
||||
$data['started'] = !is_null($build->getStarted()) ? $build->getStarted()->format('Y-m-d H:i:s') : null;
|
||||
$data['finished'] = !is_null($build->getFinished()) ? $build->getFinished()->format('Y-m-d H:i:s') : null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue