dolibarr 22.0.5
Interventions Class Reference
Inheritance diagram for Interventions:
Collaboration diagram for Interventions:

Public Member Functions

 __construct ()
 Constructor.
 
 get ($id, $ref='', $ref_ext='', $contact_list=1)
 Get an intervention Return an array with intervention information.
 
 index ($sortfield="t.rowid", $sortorder='ASC', $limit=100, $page=0, $thirdparty_ids='', $sqlfilters='', $properties='', $contact_type='', $pagination_data=false)
 List interventions.
 
 post ($request_data=null)
 Create an intervention.
 
 put ($id, $request_data=null)
 Update intervention general fields (won't touch lines of fichinter)
 
 postLine ($id, $request_data=null)
 Get lines of intervention.
 
 delete ($id)
 Delete an intervention.
 
 reopen ($id)
 Reopen an intervention.
 
 validate ($id, $notrigger=0)
 Validate an intervention.
 
 closeFichinter ($id)
 Close an intervention.
 
- Public Member Functions inherited from DolibarrApi
 __construct ($db, $cachedir='', $refreshCache=false)
 Constructor.
 

Protected Member Functions

 _cleanObjectDatas ($object)
 Clean sensible object data.
 
- Protected Member Functions inherited from DolibarrApi
 _checkValForAPI ($field, $value, $object)
 Check and convert a string depending on its type/name.
 
 _filterObjectProperties ($object, $properties)
 Filter properties that will be returned on object.
 
 _checkFilters ($sqlfilters, &$error='')
 Return if a $sqlfilters parameter is valid Function no more used.
 

Private Member Functions

 _validate ($data)
 Validate fields before create or update object.
 
 _validateLine ($data)
 Validate fields before create or update object.
 

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.
 

Detailed Description

Definition at line 38 of file api_interventions.class.php.

Member Function Documentation

◆ _cleanObjectDatas()

Interventions::_cleanObjectDatas ( $object)
protected

Clean sensible object data.

Parameters
Object$objectObject to clean
Returns
Object Object with cleaned properties

Reimplemented from DolibarrApi.

Definition at line 605 of file api_interventions.class.php.

References $object.

Referenced by closeFichinter(), get(), index(), reopen(), and validate().

◆ _validate()

Interventions::_validate ( $data)
private

Validate fields before create or update object.

Parameters
?array<null|int|float|string>$data Data to validate
Returns
array<string,null|int|float|string>
Exceptions
RestException

Definition at line 585 of file api_interventions.class.php.

Referenced by post().

◆ _validateLine()

Interventions::_validateLine ( $data)
private

Validate fields before create or update object.

Parameters
?array<string,null|int|float|string>$data Data to validate
Returns
array<string,null|int|float|string> Return array with validated mandatory fields and their value
Exceptions
RestException

Definition at line 624 of file api_interventions.class.php.

Referenced by postLine().

◆ closeFichinter()

Interventions::closeFichinter ( $id)

Close an intervention.

Since
7.0.0 Initial implementation
Parameters
int$idIntervention ID

@url POST {id}/close

Returns
Object
Exceptions
RestException

Definition at line 549 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().

◆ delete()

Interventions::delete ( $id)

Delete an intervention.

Since
8.0.0 Initial implementation
Parameters
int$idIntervention ID
Returns
array @phan-return array<string,array{code:int,message:string}> @phpstan-return array<string,array{code:int,message:string}>
Exceptions
RestException

Definition at line 427 of file api_interventions.class.php.

References $id, and DolibarrApi\_checkAccessToResource().

◆ get()

Interventions::get ( $id,
$ref = '',
$ref_ext = '',
$contact_list = 1 )

Get an intervention Return an array with intervention information.

Since
7.0.0 Initial implementation
Parameters
int$idID of intervention
string$refRef of object
string$ref_extExternal reference of object
int$contact_list0: Returned array of contacts/addresses contains all properties, 1: Return array contains just id, -1: Do not return contacts/adddesses
Returns
Object Cleaned intervention object
Exceptions
RestException

Definition at line 87 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().

◆ index()

Interventions::index ( $sortfield = "t.rowid",
$sortorder = 'ASC',
$limit = 100,
$page = 0,
$thirdparty_ids = '',
$sqlfilters = '',
$properties = '',
$contact_type = '',
$pagination_data = false )

List interventions.

Get a list of interventions

Since
7.0.0 Initial implementation
Parameters
string$sortfieldSort field
string$sortorderSort order
int$limitLimit for list
int$pagePage number
string$thirdparty_idsThirdparty ids to filter orders of (example '1' or '1,2,3') {@pattern /^[0-9,]*$/i}
string$sqlfiltersOther criteria to filter answers separated by a comma. Syntax example "(t.ref:like:'SO-%') and (t.date_creation:<:'20160101')"
string$propertiesRestrict the data returned to these properties. Ignored if empty. Comma separated list of property names
string$contact_typeType of contacts: thirdparty, internal or external
bool$pagination_dataIf this parameter is set to true the response will include pagination data. Default value is false. Page starts from 0*
Returns
array Array of order objects @phan-return array<object> @phpstan-return array<object>
Exceptions
RestException

Definition at line 141 of file api_interventions.class.php.

References _cleanObjectDatas(), DolibarrApi\_filterObjectProperties(), dol_syslog(), and forgeSQLFromUniversalSearchCriteria().

◆ post()

Interventions::post ( $request_data = null)

Create an intervention.

Since
7.0.0 Initial implementation
Parameters
array$request_dataRequest data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data
Returns
int ID of created intervention
Exceptions
RestException

Definition at line 248 of file api_interventions.class.php.

References DolibarrApi\_checkValForAPI(), _validate(), and sanitizeVal().

◆ postLine()

Interventions::postLine ( $id,
$request_data = null )

Get lines of intervention.

Parameters
int$idId of intervention

@url GET {id}/lines

Returns
int Add a line to an intervention
Since
7.0.0 Initial implementation
Parameters
int$idID of intervention to update
array$request_dataRequest data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data

@url POST {id}/lines

Returns
int 0 if ok, <0 if ko
Exceptions
RestException

Definition at line 374 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), DolibarrApi\_checkValForAPI(), _validateLine(), and sanitizeVal().

◆ put()

Interventions::put ( $id,
$request_data = null )

Update intervention general fields (won't touch lines of fichinter)

Since
22.0.0 Initial implementation
Parameters
int$idID of fichinter to update
array$request_dataRequest data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data
Returns
Object Updated object
Exceptions
RestException

Definition at line 285 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), DolibarrApi\_checkValForAPI(), and sanitizeVal().

◆ reopen()

Interventions::reopen ( $id)

Reopen an intervention.

Since
22.0.0 Initial implementation
Parameters
int$idIntervention ID

@url POST {id}/reopen

Returns
Object
Exceptions
RestException

Definition at line 466 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().

◆ validate()

Interventions::validate ( $id,
$notrigger = 0 )

Validate an intervention.

If you get a bad value for param notrigger check, provide this in body { "notrigger": 0 }

Since
7.0.0 Initial implementation
Parameters
int$idIntervention ID
int$notrigger1=Does not execute triggers, 0= execute triggers

@url POST {id}/validate

Returns
Object
Exceptions
RestException

Definition at line 509 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().


The documentation for this class was generated from the following file: