dolibarr  16.0.5
Public Member Functions | Protected Member Functions | Private Member Functions | List of all members
Contacts Class Reference
Inheritance diagram for Contacts:
Inheritance graph
[legend]
Collaboration diagram for Contacts:
Collaboration graph
[legend]

Public Member Functions

 __construct ()
 Constructor.
 
 get ($id, $includecount=0, $includeroles=0)
 Get properties of a contact object. More...
 
 getByEmail ($email, $includecount=0, $includeroles=0)
 Get properties of a contact object by Email. More...
 
 index ($sortfield="t.rowid", $sortorder='ASC', $limit=100, $page=0, $thirdparty_ids='', $category=0, $sqlfilters='', $includecount=0, $includeroles=0)
 List contacts. More...
 
 post ($request_data=null)
 Create contact object. More...
 
 put ($id, $request_data=null)
 Update contact. More...
 
 delete ($id)
 Delete contact. More...
 
 createUser ($id, $request_data=null)
 Create an user account object from contact (external user) More...
 
 getCategories ($id, $sortfield="s.rowid", $sortorder='ASC', $limit=0, $page=0)
 Get categories for a contact. More...
 
 addCategory ($id, $category_id)
 Add a category to a contact. More...
 
 deleteCategory ($id, $category_id)
 Remove the link between a category and a contact. More...
 
- Public Member Functions inherited from DolibarrApi
 __construct ($db, $cachedir='', $refreshCache=false)
 Constructor. More...
 

Protected Member Functions

 _cleanObjectDatas ($object)
 Clean sensible object datas. More...
 
- Protected Member Functions inherited from DolibarrApi
 _checkValForAPI ($field, $value, $object)
 Check and convert a string depending on its type/name. More...
 
 _checkFilters ($sqlfilters, &$error='')
 Return if a $sqlfilters parameter is valid. More...
 

Private Member Functions

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

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. More...
 
static _forge_criteria_callback ($matches)
 Function to forge a SQL criteria from a Generic filter string. More...
 

Detailed Description

Definition at line 31 of file api_contacts.class.php.

Member Function Documentation

◆ _cleanObjectDatas()

Contacts::_cleanObjectDatas (   $object)
protected

Clean sensible object datas.

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

Reimplemented from DolibarrApi.

Definition at line 525 of file api_contacts.class.php.

◆ _validate()

Contacts::_validate (   $data)
private

Validate fields before create or update object.

Parameters
array | null$dataData to validate
Returns
array
Exceptions
RestException

Definition at line 550 of file api_contacts.class.php.

◆ addCategory()

Contacts::addCategory (   $id,
  $category_id 
)

Add a category to a contact.

@url POST {id}/categories/{category_id}

Parameters
int$idId of contact
int$category_idId of category
Returns
mixed
Exceptions
RestException401 Insufficient rights
RestException404 Category or contact not found

Definition at line 450 of file api_contacts.class.php.

◆ createUser()

Contacts::createUser (   $id,
  $request_data = null 
)

Create an user account object from contact (external user)

Parameters
int$idId of contact
array$request_dataRequest datas
Returns
int ID of user

@url POST {id}/createUser

Definition at line 359 of file api_contacts.class.php.

◆ delete()

Contacts::delete (   $id)

Delete contact.

Parameters
int$idContact ID
Returns
integer

Definition at line 333 of file api_contacts.class.php.

◆ deleteCategory()

Contacts::deleteCategory (   $id,
  $category_id 
)

Remove the link between a category and a contact.

@url DELETE {id}/categories/{category_id}

Parameters
int$idId of contact
int$category_idId of category
Returns
mixed
Exceptions
RestException401 Insufficient rights
RestException404 Category or contact not found

Definition at line 490 of file api_contacts.class.php.

◆ get()

Contacts::get (   $id,
  $includecount = 0,
  $includeroles = 0 
)

Get properties of a contact object.

Return an array with contact informations

Parameters
int$idID of contact
int$includecountCount and return also number of elements the contact is used as a link for
int$includerolesIncludes roles of the contact
Returns
array|mixed data without useless information
Exceptions
RestException

Definition at line 72 of file api_contacts.class.php.

◆ getByEmail()

Contacts::getByEmail (   $email,
  $includecount = 0,
  $includeroles = 0 
)

Get properties of a contact object by Email.

Parameters
string$emailEmail of contact
int$includecountCount and return also number of elements the contact is used as a link for
int$includerolesIncludes roles of the contact
Returns
array|mixed data without useless information

@url GET email/{email}

Exceptions
RestException401 Insufficient rights
RestException404 User or group not found

Definition at line 116 of file api_contacts.class.php.

◆ getCategories()

Contacts::getCategories (   $id,
  $sortfield = "s.rowid",
  $sortorder = 'ASC',
  $limit = 0,
  $page = 0 
)

Get categories for a contact.

Parameters
int$idID of contact
string$sortfieldSort field
string$sortorderSort order
int$limitLimit for list
int$pagePage number
Returns
mixed

@url GET {id}/categories

Definition at line 416 of file api_contacts.class.php.

◆ index()

Contacts::index (   $sortfield = "t.rowid",
  $sortorder = 'ASC',
  $limit = 100,
  $page = 0,
  $thirdparty_ids = '',
  $category = 0,
  $sqlfilters = '',
  $includecount = 0,
  $includeroles = 0 
)

List contacts.

Get a list of contacts

Parameters
string$sortfieldSort field
string$sortorderSort order
int$limitLimit for list
int$pagePage number
string$thirdparty_idsThirdparty ids to filter contacts of (example '1' or '1,2,3') {@pattern /^[0-9,]*$/i}
int$categoryUse this param to filter list by category
string$sqlfiltersOther criteria to filter answers separated by a comma. Syntax example "(t.ref:like:'SO-%') and (t.date_creation:<:'20160101')"
int$includecountCount and return also number of elements the contact is used as a link for
int$includerolesIncludes roles of the contact
Returns
array Array of contact objects
Exceptions
RestException

Definition at line 165 of file api_contacts.class.php.

◆ post()

Contacts::post (   $request_data = null)

Create contact object.

Parameters
array$request_dataRequest datas
Returns
int ID of contact

Definition at line 274 of file api_contacts.class.php.

◆ put()

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

Update contact.

Parameters
int$idId of contact to update
array$request_dataDatas
Returns
int

Definition at line 298 of file api_contacts.class.php.


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