formatAssignee() public static méthode

Returns the full name and a compose to message an assignee.
public static formatAssignee ( string $assignee, boolean $link = false ) : string
$assignee string The assignee's user name.
$link boolean Whether to link to an email compose screen.
Résultat string The formatted assignee name.
Exemple #1
0
">
    <?php 
    echo $task->start ? strftime($dateFormat, $task->start) : '&nbsp;';
    ?>
  </td>
<?php 
}
if (in_array('estimate', $columns)) {
    ?>
  <td class="nowrap" sortval="<?php 
    echo htmlspecialchars($task->estimation());
    ?>
">
   <?php 
    echo htmlspecialchars($task->estimation());
    ?>
  </td>
<?php 
}
if (in_array('assignee', $columns)) {
    ?>
  <td>
    <?php 
    echo Nag::formatAssignee($task->assignee);
    ?>
  </td>
<?php 
}
?>
</tr>