dolibarr 18.0.6
|
Public Member Functions | |
__construct () | |
Constructor. | |
get ($id, $include_childs=false) | |
Get properties of a category object. | |
index ($sortfield="t.rowid", $sortorder='ASC', $limit=100, $page=0, $type='', $sqlfilters='') | |
List categories. | |
post ($request_data=null) | |
Create category object. | |
put ($id, $request_data=null) | |
Update category. | |
delete ($id) | |
Delete category. | |
getListForObject ($id, $type, $sortfield="s.rowid", $sortorder='ASC', $limit=0, $page=0) | |
List categories of an object. | |
linkObjectById ($id, $type, $object_id) | |
Link an object to a category by id. | |
linkObjectByRef ($id, $type, $object_ref) | |
Link an object to a category by ref. | |
unlinkObjectById ($id, $type, $object_id) | |
Unlink an object from a category by id. | |
unlinkObjectByRef ($id, $type, $object_ref) | |
Unlink an object from a category by ref. | |
getObjects ($id, $type, $onlyids=0) | |
Get the list of objects in a category. | |
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 | |
_validate ($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. | |
Definition at line 36 of file api_categories.class.php.
|
protected |
Clean sensible object datas.
Categorie | $object | Object to clean |
Reimplemented from DolibarrApi.
Definition at line 664 of file api_categories.class.php.
|
private |
Validate fields before create or update object.
array | null | $data | Data to validate |
RestException |
Definition at line 722 of file api_categories.class.php.
Referenced by post().
Categories::delete | ( | $id | ) |
Delete category.
int | $id | Category ID |
Definition at line 256 of file api_categories.class.php.
References DolibarrApi\_checkAccessToResource().
Categories::get | ( | $id, | |
$include_childs = false ) |
Get properties of a category object.
Return an array with category informations
int | $id | ID of category |
bool | $include_childs | Include child categories list (true or false) |
RestException |
Definition at line 89 of file api_categories.class.php.
References DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
Categories::getListForObject | ( | $id, | |
$type, | |||
$sortfield = "s.rowid", | |||
$sortorder = 'ASC', | |||
$limit = 0, | |||
$page = 0 ) |
List categories of an object.
Get the list of categories linked to an object
int | $id | Object ID |
string | $type | Type of category ('member', 'customer', 'supplier', 'product', 'contact', 'project') |
string | $sortfield | Sort field |
string | $sortorder | Sort order |
int | $limit | Limit for list |
int | $page | Page number |
RestException |
@url GET /object/{type}/{id}
Definition at line 299 of file api_categories.class.php.
Categories::getObjects | ( | $id, | |
$type, | |||
$onlyids = 0 ) |
Get the list of objects in a category.
int | $id | ID of category |
string | $type | Type of category ('member', 'customer', 'supplier', 'product', 'contact', 'project') |
int | $onlyids | Return only ids of objects (consume less memory) |
@url GET {id}/objects
Definition at line 745 of file api_categories.class.php.
References DolibarrApi\_checkAccessToResource(), and dol_syslog().
Categories::index | ( | $sortfield = "t.rowid", | |
$sortorder = 'ASC', | |||
$limit = 100, | |||
$page = 0, | |||
$type = '', | |||
$sqlfilters = '' ) |
List categories.
Get a list of categories
string | $sortfield | Sort field |
string | $sortorder | Sort order |
int | $limit | Limit for list |
int | $page | Page number |
string | $type | Type of category ('member', 'customer', 'supplier', 'product', 'contact') |
string | $sqlfilters | Other criteria to filter answers separated by a comma. Syntax example "(t.ref:like:'SO-%') and (t.date_creation:<:'20160101')" |
RestException |
Definition at line 133 of file api_categories.class.php.
References _cleanObjectDatas(), and forgeSQLFromUniversalSearchCriteria().
Categories::linkObjectById | ( | $id, | |
$type, | |||
$object_id ) |
Link an object to a category by id.
int | $id | ID of category |
string | $type | Type of category ('member', 'customer', 'supplier', 'product', 'contact') |
int | $object_id | ID of object |
RestException |
@url POST {id}/objects/{type}/{object_id}
Definition at line 352 of file api_categories.class.php.
Categories::linkObjectByRef | ( | $id, | |
$type, | |||
$object_ref ) |
Link an object to a category by ref.
int | $id | ID of category |
string | $type | Type of category ('member', 'customer', 'supplier', 'product', 'contact') |
string | $object_ref | Reference of object |
RestException |
@url POST {id}/objects/{type}/ref/{object_ref}
Definition at line 432 of file api_categories.class.php.
Categories::post | ( | $request_data = null | ) |
Create category object.
array | $request_data | Request data |
Definition at line 196 of file api_categories.class.php.
References _validate().
Categories::put | ( | $id, | |
$request_data = null ) |
Update category.
int | $id | Id of category to update |
array | $request_data | Datas |
Definition at line 221 of file api_categories.class.php.
References DolibarrApi\_checkAccessToResource().
Categories::unlinkObjectById | ( | $id, | |
$type, | |||
$object_id ) |
Unlink an object from a category by id.
int | $id | ID of category |
string | $type | Type of category ('member', 'customer', 'supplier', 'product', 'contact') |
int | $object_id | ID of the object |
RestException |
@url DELETE {id}/objects/{type}/{object_id}
Definition at line 512 of file api_categories.class.php.
Categories::unlinkObjectByRef | ( | $id, | |
$type, | |||
$object_ref ) |
Unlink an object from a category by ref.
int | $id | ID of category |
string | $type | Type of category ('member', 'customer', 'supplier', 'product', 'contact') |
string | $object_ref | Reference of the object |
RestException |
@url DELETE {id}/objects/{type}/ref/{object_ref}
Definition at line 590 of file api_categories.class.php.