add icons ticket

pull/3063/head
Alex Ruben 8 years ago committed by Nicolas Ducoulombier
parent 8b4f923fed
commit 102daea903
  1. BIN
      main/img/icons/128/ticket.png
  2. BIN
      main/img/icons/22/ticket.png
  3. BIN
      main/img/icons/32/ticket.png
  4. BIN
      main/img/icons/48/ticket.png
  5. BIN
      main/img/icons/64/ticket.png
  6. 1610
      main/img/icons/svg/ticket.svg
  7. 10
      main/inc/lib/TicketManager.php

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 951 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 72 KiB

@ -938,14 +938,20 @@ class TicketManager
$img_source = 'icons/32/event.png';
break;
default:
$img_source = 'icons/32/course_home.png';
$img_source = 'icons/32/ticket.png';
break;
}
$row['start_date'] = Display::dateToStringAgoAndLongDate($row['start_date']);
$row['sys_lastedit_datetime'] = Display::dateToStringAgoAndLongDate($row['sys_lastedit_datetime']);
$icon = Display::return_icon($img_source, get_lang('Info')).'<a href="ticket_details.php?ticket_id='.$row['id'].'">'.$row['code'].'</a>';
$icon = Display::return_icon(
$img_source,
get_lang('Info'),
['style' => 'margin-right: 10px; float: left;']
);
$icon .= '<a href="ticket_details.php?ticket_id='.$row['id'].'">'.$row['code'].'</a>';
if ($isAdmin) {
$ticket = array(

Loading…
Cancel
Save