|
dolibarr 19.0.4
|


Public Member Functions | |
| __construct () | |
| Constructor. | |
| get ($id) | |
| Get properties of a subscription object. | |
| index ($sortfield="dateadh", $sortorder='ASC', $limit=100, $page=0, $sqlfilters='', $properties='') | |
| List subscriptions. | |
| post ($request_data=null) | |
| Create subscription object. | |
| put ($id, $request_data=null) | |
| Update subscription. | |
| delete ($id) | |
| Delete subscription. | |
Public Member Functions inherited from DolibarrApi | |
| __construct ($db, $cachedir='', $refreshCache=false) | |
| Constructor. | |
Private Member Functions | |
| _validate ($data) | |
| Validate fields before creating an object. | |
Additional Inherited Members | |
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. | |
| _cleanObjectDatas ($object) | |
| Clean sensible object datas. | |
| _checkFilters ($sqlfilters, &$error='') | |
| Return if a $sqlfilters parameter is valid Function no more used. | |
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 28 of file api_subscriptions.class.php.
|
private |
Validate fields before creating an object.
| array | null | $data | Data to validate |
| RestException |
Definition at line 256 of file api_subscriptions.class.php.
Referenced by post().
| Subscriptions::delete | ( | $id | ) |
Delete subscription.
| int | $id | ID of subscription to delete |
Definition at line 221 of file api_subscriptions.class.php.
| Subscriptions::get | ( | $id | ) |
Get properties of a subscription object.
Return an array with subscription informations
| int | $id | ID of subscription |
| RestException |
Definition at line 59 of file api_subscriptions.class.php.
References DolibarrApi\_cleanObjectDatas().
| Subscriptions::index | ( | $sortfield = "dateadh", | |
| $sortorder = 'ASC', | |||
| $limit = 100, | |||
| $page = 0, | |||
| $sqlfilters = '', | |||
| $properties = '' ) |
List subscriptions.
Get a list of subscriptions
| 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.import_key:<:'20160101')" |
| string | $properties | Restrict the data returned to theses properties. Ignored if empty. Comma separated list of properties names |
| RestException |
Definition at line 89 of file api_subscriptions.class.php.
References DolibarrApi\_cleanObjectDatas(), DolibarrApi\_filterObjectProperties(), and forgeSQLFromUniversalSearchCriteria().
| Subscriptions::post | ( | $request_data = null | ) |
Create subscription object.
| array | $request_data | Request data |
Definition at line 146 of file api_subscriptions.class.php.
References _validate().
| Subscriptions::put | ( | $id, | |
| $request_data = null ) |
Update subscription.
| int | $id | ID of subscription to update |
| array | $request_data | Datas |
Definition at line 177 of file api_subscriptions.class.php.
References DolibarrApi\_checkValForAPI().