|
dolibarr 18.0.8
|


Public Member Functions | |
| __construct () | |
| Constructor. | |
| get ($id) | |
| Get properties of a Ticket object. | |
| getByTrackId ($track_id) | |
| Get properties of a Ticket object from track id. | |
| getByRef ($ref) | |
| Get properties of a Ticket object from ref. | |
| index ($socid=0, $sortfield="t.rowid", $sortorder="ASC", $limit=100, $page=0, $sqlfilters='') | |
| List tickets. | |
| post ($request_data=null) | |
| Create ticket object. | |
| postNewMessage ($request_data=null) | |
| Create ticket object. | |
| put ($id, $request_data=null) | |
| Update ticket. | |
| delete ($id) | |
| Delete ticket. | |
Public Member Functions inherited from DolibarrApi | |
| __construct ($db, $cachedir='', $refreshCache=false) | |
| Constructor. | |
Protected Member Functions | |
| _cleanObjectDatas ($object) | |
| Clean sensible object datas. | |
Protected Member Functions inherited from DolibarrApi | |
| _checkValForAPI ($field, $value, $object) | |
| Check and convert a string depending on its type/name. | |
| _checkFilters ($sqlfilters, &$error='') | |
| Return if a $sqlfilters parameter is valid Function no more used. | |
Private Member Functions | |
| getCommon ($id=0, $track_id='', $ref='') | |
| Get properties of a Ticket object Return an array with ticket informations. | |
| _validate ($data) | |
| Validate fields before create or update object. | |
| _validateMessage ($data) | |
| Validate fields before create or update object message. | |
Additional Inherited Members | |
Static Protected Member Functions inherited from DolibarrApi | |
| static | _checkAccessToResource ($resource, $resource_id=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid') |
| Check access by user to a given resource. | |
| static | _forge_criteria_callback ($matches) |
| Function to forge a SQL criteria from a Generic filter string. | |
Definition at line 30 of file api_tickets.class.php.
|
protected |
Clean sensible object datas.
| Object | $object | Object to clean |
Reimplemented from DolibarrApi.
Definition at line 482 of file api_tickets.class.php.
References _cleanObjectDatas().
Referenced by _cleanObjectDatas(), getCommon(), and index().
|
private |
Validate fields before create or update object.
| array | $data | Data to validate |
| RestException |
Definition at line 440 of file api_tickets.class.php.
Referenced by post().
|
private |
Validate fields before create or update object message.
| array | $data | Data to validate |
| RestException |
Definition at line 460 of file api_tickets.class.php.
Referenced by postNewMessage().
| Tickets::delete | ( | $id | ) |
Delete ticket.
| int | $id | Ticket ID |
Definition at line 406 of file api_tickets.class.php.
References DolibarrApi\_checkAccessToResource().
| Tickets::get | ( | $id | ) |
Get properties of a Ticket object.
Return an array with ticket informations
| int | $id | ID of ticket |
| RestException | 401 |
| RestException | 403 |
| RestException | 404 |
Definition at line 75 of file api_tickets.class.php.
References getCommon().
| Tickets::getByRef | ( | $ref | ) |
Get properties of a Ticket object from ref.
Return an array with ticket informations
| string | $ref | Reference for ticket |
@url GET ref/{ref}
| RestException | 401 |
| RestException | 403 |
| RestException | 404 |
Definition at line 113 of file api_tickets.class.php.
References getCommon().
| Tickets::getByTrackId | ( | $track_id | ) |
Get properties of a Ticket object from track id.
Return an array with ticket informations
| string | $track_id | Tracking ID of ticket |
@url GET track_id/{track_id}
| RestException | 401 |
| RestException | 403 |
| RestException | 404 |
Definition at line 94 of file api_tickets.class.php.
References getCommon().
|
private |
Get properties of a Ticket object Return an array with ticket informations.
| int | $id | ID of ticket |
| string | $track_id | Tracking ID of ticket |
| string | $ref | Reference for ticket |
Definition at line 127 of file api_tickets.class.php.
References DolibarrApi\_checkAccessToResource(), _cleanObjectDatas(), and dolGetFirstLastname().
Referenced by get(), getByRef(), and getByTrackId().
| Tickets::index | ( | $socid = 0, | |
| $sortfield = "t.rowid", | |||
| $sortorder = "ASC", | |||
| $limit = 100, | |||
| $page = 0, | |||
| $sqlfilters = '' ) |
List tickets.
Get a list of tickets
| int | $socid | Filter list with thirdparty ID |
| string | $sortfield | Sort field |
| string | $sortorder | Sort order |
| int | $limit | Limit for list |
| int | $page | Page number |
| string | $sqlfilters | Other criteria to filter answers separated by a comma. Syntax example "(t.ref:like:'SO-%') and (t.date_creation:<:'20160101') and (t.fk_statut:=:1)" |
Definition at line 201 of file api_tickets.class.php.
References _cleanObjectDatas(), and forgeSQLFromUniversalSearchCriteria().
| Tickets::post | ( | $request_data = null | ) |
Create ticket object.
| array | $request_data | Request datas |
Definition at line 299 of file api_tickets.class.php.
References _validate(), and generate_random_id().
| Tickets::postNewMessage | ( | $request_data = null | ) |
Create ticket object.
| array | $request_data | Request datas |
Definition at line 332 of file api_tickets.class.php.
References _validateMessage().
| Tickets::put | ( | $id, | |
| $request_data = null ) |
Update ticket.
| int | $id | Id of ticket to update |
| array | $request_data | Datas |
Definition at line 364 of file api_tickets.class.php.
References DolibarrApi\_checkAccessToResource(), and DolibarrApi\_checkValForAPI().