コード例 #1
0
ファイル: Queue.php プロジェクト: AholibamaSI/plymouth-webapp
 public function get_open_calls()
 {
     // Set up the parameters for the search
     $params = array('call_status' => 'open', 'its_assigned_group' => $this->itsgroupid);
     $open_tickets = Queue::search($params);
     return $open_tickets;
 }