Differential D20331 Diff 48535 src/applications/project/controller/trigger/PhabricatorProjectTriggerViewController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/controller/trigger/PhabricatorProjectTriggerViewController.php
| Show First 20 Lines • Show All 105 Lines • ▼ Show 20 Lines | foreach ($column_map as $column_phid => $column_status) { | ||||
| array( | array( | ||||
| 'href' => $project->getURI(), | 'href' => $project->getURI(), | ||||
| ), | ), | ||||
| $project->getDisplayName()); | $project->getDisplayName()); | ||||
| $column_name = phutil_tag( | $column_name = phutil_tag( | ||||
| 'a', | 'a', | ||||
| array( | array( | ||||
| 'href' => $column->getBoardURI(), | 'href' => $column->getWorkboardURI(), | ||||
| ), | ), | ||||
| $column->getDisplayName()); | $column->getDisplayName()); | ||||
| } else { | } else { | ||||
| $project_name = null; | $project_name = null; | ||||
| $column_name = phutil_tag('em', array(), pht('Restricted Column')); | $column_name = phutil_tag('em', array(), pht('Restricted Column')); | ||||
| } | } | ||||
| if ($column_status == PhabricatorProjectColumn::STATUS_ACTIVE) { | if ($column_status == PhabricatorProjectColumn::STATUS_ACTIVE) { | ||||
| ▲ Show 20 Lines • Show All 109 Lines • Show Last 20 Lines | |||||