예제 #1
0
파일: api.php 프로젝트: dsyman2/integriaims
     echo api_get_incidents_status($return_type, $user);
     break;
 case "get_groups":
     echo api_get_groups($return_type, $user, $params);
     break;
 case "get_users":
     echo api_get_users($return_type, $user);
     break;
 case "get_stats":
     echo api_get_stats($return_type, $params, $token, $user);
     break;
 case "get_inventories":
     echo api_get_inventories($return_type, $user, $params);
     break;
 case "validate_user":
     echo api_validate_user($return_type, $user, $user_pass);
     break;
 case "get_last_cron_execution":
     echo api_get_last_cron_execution($return_type, $user, $params);
     break;
 case "get_num_queued_emails":
     echo get_num_queued_emails($return_type, $user, $params);
     break;
 case "get_last_invoice_id":
     echo api_get_last_invoice_id($return_type);
     break;
 case "get_invoice":
     echo api_get_invoice($return_type, $params);
     break;
 case "create_invoice":
     $params = explode($token, $params);
예제 #2
0
     break;
 case "get_groups":
     echo api_get_groups($return_type, $user, $params);
     break;
 case "get_users":
     echo api_get_users($return_type, $user);
     break;
 case "get_stats":
     echo api_get_stats($return_type, $params, $token, $user);
     break;
 case "get_inventories":
     echo api_get_inventories($return_type, $user, $params);
     break;
 case "validate_user":
     $params = explode($token, $params);
     echo api_validate_user($return_type, $user, $params);
     break;
 case "get_last_cron_execution":
     echo api_get_last_cron_execution($return_type, $user, $params);
     break;
 case "get_previous_cron_execution":
     echo api_get_previous_cron_execution($return_type, $user, $params);
     break;
 case "get_num_queued_emails":
     echo get_num_queued_emails($return_type, $user, $params);
     break;
 case "get_last_invoice_id":
     echo api_get_last_invoice_id($return_type);
     break;
 case "get_invoice":
     echo api_get_invoice($return_type, $params);