|
dolibarr
13.0.2
|
Inheritance diagram for Tasks:
Collaboration diagram for Tasks:Public Member Functions | |
| __construct () | |
| Constructor. | |
| get ($id, $includetimespent=0) | |
| Get properties of a task object. More... | |
| index ($sortfield="t.rowid", $sortorder= 'ASC', $limit=100, $page=0, $sqlfilters= '') | |
| List tasks. More... | |
| post ($request_data=null) | |
| Create task object. More... | |
| getRoles ($id, $userid=0) | |
| Get time spent of a task. More... | |
| put ($id, $request_data=null) | |
| Add a task to given project. More... | |
| delete ($id) | |
| Delete task. More... | |
| addTimeSpent ($id, $date, $duration, $user_id=0, $note= '') | |
| Add time spent to a task of a project. 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 | |
| _cleanObjectDatas ($object) | |
| Executed method when API is called without parameter. More... | |
| _checkFilters ($sqlfilters) | |
| 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 user access to a resource. More... | |
| static | _forge_criteria_callback ($matches) |
| Function to forge a SQL criteria. More... | |
Definition at line 30 of file api_tasks.class.php.
|
protected |
Clean sensible object datas.
| Object | $object | Object to clean |
Definition at line 556 of file api_tasks.class.php.
Referenced by get(), getRoles(), and index().
|
private |
Validate fields before create or update object.
| array | $data | Array with data to verify |
| RestException |
Definition at line 606 of file api_tasks.class.php.
Referenced by post().
| Tasks::addTimeSpent | ( | $id, | |
| $date, | |||
| $duration, | |||
$user_id = 0, |
|||
$note = '' |
|||
| ) |
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) |
| int | $duration | Duration in seconds (3600 = 1h) |
| int | $user_id | User (Use 0 for connected user) |
| string | $note | Note |
POST {id}/addtimespent
Definition at line 507 of file api_tasks.class.php.
References DolibarrApi\_checkAccessToResource(), and dol_stringtotime().
| Tasks::delete | ( | $id | ) |
Delete task.
| int | $id | Task ID |
Definition at line 465 of file api_tasks.class.php.
References DolibarrApi\_checkAccessToResource().
| Tasks::get | ( | $id, | |
$includetimespent = 0 |
|||
| ) |
Get properties of a task object.
Return an array with task informations
| 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 (2 is no implemented yet) |
| RestException |
Definition at line 68 of file api_tasks.class.php.
References DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Tasks::getRoles | ( | $id, | |
$userid = 0 |
|||
| ) |
Get time spent of a task.
| int | $id | Id of task |
GET {id}/tasks Get roles a user is assigned to a task with
| int | $id | Id of task |
| int | $userid | Id of user (0 = connected user) |
GET {id}/roles
Definition at line 269 of file api_tasks.class.php.
References DolibarrApi\_checkAccessToResource(), _cleanObjectDatas(), and db.
| Tasks::index | ( | $sortfield = "t.rowid", |
|
$sortorder = 'ASC', |
|||
$limit = 100, |
|||
$page = 0, |
|||
$sqlfilters = '' |
|||
| ) |
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')" |
Definition at line 110 of file api_tasks.class.php.
References DolibarrApi\_checkFilters(), _cleanObjectDatas(), db, and dol_syslog().
| Tasks::post | ( | $request_data = null | ) |
Create task object.
| array | $request_data | Request data |
Definition at line 192 of file api_tasks.class.php.
References _validate().
| Tasks::put | ( | $id, | |
$request_data = null |
|||
| ) |
Add a task to given project.
| int | $id | Id of project to update |
| array | $request_data | Projectline data |
POST {id}/tasks
| int | $id | Id of project to update |
| int | $taskid | Id of task to update |
| array | $request_data | Projectline data |
PUT {id}/tasks/{taskid}
| int | $id | Id of task to update |
| array | $request_data | Datas |
Definition at line 431 of file api_tasks.class.php.
References DolibarrApi\_checkAccessToResource().