Function __global->find_ticket_assigned_to

Definitions

sources/tickets2.php

  • Find who a ticket is assigned to.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: array

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$ticket_id ID_TEXT No No required parameter N/A N/A Ticket ID

Returns

  • Map of assigned members (member ID to display name)
  • Type: array
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Find who a ticket is assigned to.
 *
 * @param  ID_TEXT $ticket_id Ticket ID
 * @return array Map of assigned members (member ID to display name)
 */

function find_ticket_assigned_to(string $ticket_id) : array