Changeset View
Changeset View
Standalone View
Standalone View
src/workflow/ArcanistMarkersWorkflow.php
| Show First 20 Lines • Show All 145 Lines • ▼ Show 20 Lines | foreach ($partitions as $partition_key => $partition) { | ||||
| $partition_lists[] = $row_lists; | $partition_lists[] = $row_lists; | ||||
| } | } | ||||
| $grid = id(new ArcanistGridView()); | $grid = id(new ArcanistGridView()); | ||||
| $grid->newColumn('marker'); | $grid->newColumn('marker'); | ||||
| $grid->newColumn('commits'); | $grid->newColumn('commits'); | ||||
| $grid->newColumn('status'); | $grid->newColumn('status'); | ||||
| $grid->newColumn('revisions'); | $grid->newColumn('revisions'); | ||||
| $grid->newColumn('messages'); | $grid->newColumn('messages') | ||||
| ->setMinimumWidth(12); | |||||
| foreach ($partition_lists as $row_lists) { | foreach ($partition_lists as $row_lists) { | ||||
| foreach ($row_lists as $row_list) { | foreach ($row_lists as $row_list) { | ||||
| foreach ($row_list as $row) { | foreach ($row_list as $row) { | ||||
| $grid->newRow($row); | $grid->newRow($row); | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 154 Lines • Show Last 20 Lines | |||||