/**
 * Print additional information (remarks) in the user row of the plugin table
 *
 * @param $data_row
 * @param $group_index
 * @param $print
 */
function print_remark($data_row, $group_index, $print)
{
    $user_id = $data_row['user_id'];
    userprojectapi::get_cell_highlighting($data_row, 1, 'nowrap');
    remark_old_issues($data_row, $print, $group_index);
    remark_unreachable_issues($data_row);
    remark_inactive($user_id);
    if ($group_index == 1) {
        remark_assigned_subprojects($user_id);
    }
    echo '</td>' . PHP_EOL;
}