Skip to content

Commit

Permalink
Merge pull request opendcim#374 from AndHam89/master
Browse files Browse the repository at this point in the history
Display the new property "FrontEdge" in the cabinet view.
  • Loading branch information
AndHam89 committed Mar 2, 2014
2 parents 453a001 + d9fb486 commit 97f8ff5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cabnavigator.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ function renderCabinetProps($cab, $audit, $AuditorName)
$renderedHTML .= ' <tr><td class="left">' . __('Tags') . ':</td>';
$renderedHTML .= '<td class="right">' . renderTagsToString($cab)
. "</td></tr>\n";
$renderedHTML .= ' <tr><td class="left">' . __('Front Edge') . ':</td>';
$renderedHTML .= '<td class="right">' . ($cab->FrontEdge ? $cab->FrontEdge : '')
. "</td></tr>\n";
$renderedHTML .= "\t\t</table>\n";

return $renderedHTML;
Expand Down

0 comments on commit 97f8ff5

Please sign in to comment.