Changeset View
Changeset View
Standalone View
Standalone View
src/applications/maniphest/controller/ManiphestReportController.php
| Show First 20 Lines • Show All 583 Lines • ▼ Show 20 Lines | public function renderOpenTasks() { | ||||
| $cname = array($col_header); | $cname = array($col_header); | ||||
| $cclass = array('pri right wide'); | $cclass = array('pri right wide'); | ||||
| $pri_map = ManiphestTaskPriority::getShortNameMap(); | $pri_map = ManiphestTaskPriority::getShortNameMap(); | ||||
| foreach ($pri_map as $pri => $label) { | foreach ($pri_map as $pri => $label) { | ||||
| $cname[] = $label; | $cname[] = $label; | ||||
| $cclass[] = 'n'; | $cclass[] = 'n'; | ||||
| } | } | ||||
| $cname[] = 'Total'; | $cname[] = pht('Total'); | ||||
| $cclass[] = 'n'; | $cclass[] = 'n'; | ||||
| $cname[] = javelin_tag( | $cname[] = javelin_tag( | ||||
| 'span', | 'span', | ||||
| array( | array( | ||||
| 'sigil' => 'has-tooltip', | 'sigil' => 'has-tooltip', | ||||
| 'meta' => array( | 'meta' => array( | ||||
| 'tip' => pht('Oldest open task.'), | 'tip' => pht('Oldest open task.'), | ||||
| 'size' => 200, | 'size' => 200, | ||||
| ▲ Show 20 Lines • Show All 195 Lines • Show Last 20 Lines | |||||