create.ticket.html.hook.php 285 B

123456789
  1. <?php
  2. $html = '<tr>';
  3. $html .= '<th>' . $lang->product->TM . '</th>';
  4. $html .= '<td>' . html::select('ticket', $rdUsers, '', 'class="form-control chosen"') . '</td>';
  5. $html .= '</tr>';
  6. ?>
  7. <script>
  8. $('#feedback').parent().parent().after(<?php echo json_encode($html)?>);
  9. </script>