|
dolibarr 23.0.3
|


Public Member Functions | |
| __construct () | |
| Constructor. | |
| get ($id, $includetimespent=0) | |
| Get properties of a task object. | |
| index ($sortfield="t.rowid", $sortorder='ASC', $limit=100, $page=0, $sqlfilters='', $properties='') | |
| List tasks. | |
| post ($request_data=null) | |
| Create task object. | |
| getTimespent ($id) | |
| Get time spent of a task. | |
| getRoles ($id, $userid=0) | |
| Get roles a user is assigned to a task with. | |
| put ($id, $request_data=null) | |
| Add a task to given project. | |
| delete ($id) | |
| Delete task. | |
| getTimeSpentByID ($id, $timespent_id) | |
| Get time spent of a task. | |
| addTimeSpent ($id, $date, $duration, $product_id=null, $user_id=0, $note='', $progress=-1) | |
| Add time spent to a task of a project. | |
| putTimeSpent ($id, $timespent_id, $date, $duration, $product_id=null, $user_id=0, $note='') | |
| Update time spent for a task of a project. | |
| deleteTimeSpent ($id, $timespent_id) | |
| Delete time spent for a task of a project. | |
| getContacts ($id, $type='') | |
| Get contacts of given task. | |
| addContact ($id, $fk_socpeople, $type_contact, $source, $notrigger=0) | |
| Adds a contact to a task. | |
| deleteContact ($id, $contactid, $type) | |
| Delete a contact type of given task. | |
Public Member Functions inherited from DolibarrApi | |
| __construct ($db, $cachedir='', $refreshCache=false) | |
| Constructor. | |
Protected Member Functions | |
| _cleanObjectDatas ($object) | |
| Clean sensitive object data @phpstan-template T. | |
| _cleanTimeSpentObjectDatas ($object) | |
| Clean sensitive object data @phpstan-template T of Object. | |
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 | |
| timespentRecordChecks ($id, $timespent_id) | |
| Validate task & timespent IDs for timespent API methods. | |
| _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 35 of file api_tasks.class.php.
|
protected |
Clean sensitive object data @phpstan-template T.
| Object | $object | Object to clean |
@phpstan-param T $object @phpstan-return T
Reimplemented from DolibarrApi.
Definition at line 800 of file api_tasks.class.php.
References $object.
Referenced by addContact(), deleteContact(), get(), getRoles(), getTimespent(), and index().
|
protected |
Clean sensitive object data @phpstan-template T of Object.
| Object | $object | Object to clean |
@phpstan-param T $object @phpstan-return T
Definition at line 854 of file api_tasks.class.php.
References $object.
Referenced by getTimeSpentByID().
|
private |
Validate fields before create or update object.
| ?array<string,string> | $data Data to validate |
| RestException |
Definition at line 976 of file api_tasks.class.php.
References $object.
Referenced by post().
| Tasks::addContact | ( | $id, | |
| $fk_socpeople, | |||
| $type_contact, | |||
| $source, | |||
| $notrigger = 0 ) |
Adds a contact to a task.
| int | $id | Task ID |
| int | $fk_socpeople | Id of thirdparty contact (if source = 'external') or id of user (if source = 'internal') to link |
| string | $type_contact | Type of contact (code). Must a code found into table llx_c_type_contact. For example: BILLING |
| string | $source | external=Contact extern (llx_socpeople), internal=Contact intern (llx_user) |
| int | $notrigger | Disable all triggers |
@url POST {id}/contacts
| RestException | 304 |
| RestException | 401 |
| RestException | 404 |
| RestException | 500 System error |
Definition at line 1045 of file api_tasks.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Tasks::addTimeSpent | ( | $id, | |
| $date, | |||
| $duration, | |||
| $product_id = null, | |||
| $user_id = 0, | |||
| $note = '', | |||
| $progress = -1 ) |
Add time spent to a task of a project.
You can test this API with the following input message { "date": "2016-12-31 23:15:00", "duration": 1800, "user_id": 1, "note": "My time test" }
| int | $id | Task ID |
| datetime | $date | Date (YYYY-MM-DD HH:MI:SS in GMT) @phan-param string $date |
| int | $duration | Duration in seconds (3600 = 1h) |
| int | $product_id | The product id that is used, default is null |
| int | $user_id | User (Use 0 for connected user) |
| string | $note | Note |
| int | $progress | Progress percentage (0-100). Use -1 to leave progress unchanged |
@url POST {id}/addtimespent NOTE: Should be "POST {id}/timespent", since POST already implies "add"
Definition at line 628 of file api_tasks.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and dol_stringtotime().
| Tasks::delete | ( | $id | ) |
Delete task.
| int | $id | Task ID |
| RestException |
Definition at line 542 of file api_tasks.class.php.
References $id, and DolibarrApi\_checkAccessToResource().
| Tasks::deleteContact | ( | $id, | |
| $contactid, | |||
| $type ) |
Delete a contact type of given task.
| int | $id | Id of task to update |
| int | $contactid | Row key of the contact in the array contact_ids. |
| string | $type | Type of the contact (BILLING, SHIPPING, CUSTOMER). |
@url DELETE {id}/contacts/{contactid}/{type}
| RestException | 401 |
| RestException | 404 |
| RestException | 500 System error |
Definition at line 1088 of file api_tasks.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Tasks::deleteTimeSpent | ( | $id, | |
| $timespent_id ) |
Delete time spent for a task of a project.
| int | $id | Task ID |
| int | $timespent_id | Time spent ID (llx_element_time.rowid) |
@url DELETE {id}/timespent/{timespent_id}
Definition at line 744 of file api_tasks.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and timespentRecordChecks().
| Tasks::get | ( | $id, | |
| $includetimespent = 0 ) |
Get properties of a task object.
Return an array with task information
| int | $id | ID of task |
| int | $includetimespent | 0=Return only task. 1=Include a summary of time spent, 2=Include details of time spent lines |
| RestException |
Definition at line 72 of file api_tasks.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Tasks::getContacts | ( | $id, | |
| $type = '' ) |
Get contacts of given task.
Return an array with contact information
| int | $id | ID of task |
| string | $type | Type of the contact |
@url GET {id}/contacts
| RestException |
Definition at line 1004 of file api_tasks.class.php.
References $id, and DolibarrApi\_checkAccessToResource().
| Tasks::getRoles | ( | $id, | |
| $userid = 0 ) |
Get roles a user is assigned to a task with.
| int | $id | Id of task |
| int | $userid | Id of user (0 = connected user) |
@url GET {id}/roles
Definition at line 317 of file api_tasks.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Tasks::getTimespent | ( | $id | ) |
Get time spent of a task.
| int | $id | Id of task |
@url GET {id}/timespent
Definition at line 281 of file api_tasks.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Tasks::getTimeSpentByID | ( | $id, | |
| $timespent_id ) |
Get time spent of a task.
| int | $id | Id of task |
| int | $timespent_id | Id of timespent |
@url GET {id}/getTimeSpent/{timespent_id}
| RestException |
Definition at line 580 of file api_tasks.class.php.
References $id, DolibarrApi\_checkAccessToResource(), _cleanTimeSpentObjectDatas(), and dol_syslog().
| Tasks::index | ( | $sortfield = "t.rowid", | |
| $sortorder = 'ASC', | |||
| $limit = 100, | |||
| $page = 0, | |||
| $sqlfilters = '', | |||
| $properties = '' ) |
List tasks.
Get a list of tasks
| 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')" |
| string | $properties | Restrict the data returned to these properties. Ignored if empty. Comma separated list of properties names |
Definition at line 114 of file api_tasks.class.php.
References _cleanObjectDatas(), DolibarrApi\_filterObjectProperties(), dol_syslog(), forgeSQLFromUniversalSearchCriteria(), and getEntity().
| Tasks::post | ( | $request_data = null | ) |
Create task object.
| array | $request_data | Request data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data |
Definition at line 198 of file api_tasks.class.php.
References DolibarrApi\_checkValForAPI(), _validate(), dol_buildpath(), dol_include_once(), dol_now(), dol_print_date(), dol_syslog(), getDolGlobalString(), and sanitizeVal().
| Tasks::put | ( | $id, | |
| $request_data = null ) |
Add a task to given project.
| int | $id | Id of project to update |
| array | $request_data | Projectline data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data |
@url POST {id}/tasks
| int | $id | Id of project to update |
| int | $taskid | Id of task to update |
| array | $request_data | Projectline data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data |
@url PUT {id}/tasks/{taskid}
| int | $id | Id of task to update |
| array | $request_data | Data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data |
Definition at line 492 of file api_tasks.class.php.
References $id, DolibarrApi\_checkAccessToResource(), DolibarrApi\_checkValForAPI(), and sanitizeVal().
| Tasks::putTimeSpent | ( | $id, | |
| $timespent_id, | |||
| $date, | |||
| $duration, | |||
| $product_id = null, | |||
| $user_id = 0, | |||
| $note = '' ) |
Update time spent for a task of a project.
You can test this API with the following input message { "date": "2016-12-31 23:15:00", "duration": 1800, "user_id": 1, "note": "My time test" }
| int | $id | Task ID |
| int | $timespent_id | Time spent ID (llx_element_time.rowid) |
| datetime | $date | Date (YYYY-MM-DD HH:MI:SS in GMT) @phan-param string $date |
| int | $duration | Duration in seconds (3600 = 1h) |
| int | $product_id | The product id that is used, default is null |
| int | $user_id | User (Use 0 for connected user) |
| string | $note | Note |
@url PUT {id}/timespent/{timespent_id}
Definition at line 696 of file api_tasks.class.php.
References $id, DolibarrApi\_checkAccessToResource(), dol_stringtotime(), and timespentRecordChecks().
|
private |
Validate task & timespent IDs for timespent API methods.
Loads the selected task & timespent records.
| int | $id | Task ID |
| int | $timespent_id | Time spent ID (llx_element_time.rowid) |
Definition at line 776 of file api_tasks.class.php.
References $id, and dol_syslog().
Referenced by deleteTimeSpent(), and putTimeSpent().