19 declare(strict_types=1);
42 $query =
"SELECT * FROM todo_items WHERE user_id = %s";
44 $result = $this->db->queryF($query, [
'integer'], [$user_id]);
46 while ($row = $this->db->fetchAssoc($result)) {
51 $row[
'description'] ??
null,
52 $row[
'deadline'] ?? null
64 $todo_id = $this->db->nextId(
'todo_items');
66 $this->db->insert(
'todo_items', [
67 'todo_id' => [
'integer', $todo_id],
68 'user_id' => [
'integer', $item->
getUserId()],
69 'title' => [
'text', $item->
getTitle()],
82 $this->db->update(
'todo_items', [
83 'user_id' => [
'integer', $item->
getUserId()],
84 'title' => [
'text', $item->
getTitle()],
88 'todo_id' => [
'integer', $item->
getTodoId()]
96 $query =
"DELETE FROM todo_items WHERE todo_id = %s";
98 $this->db->manipulateF($query, [
'integer'], [$item->getTodoId()]);
getItemsOfUser(int $user_id)
Get the items of a user.
getUserId()
Get the id of the user to which the item belongs.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(ilDBInterface $db)
getTodoId()
Get the id of the item.
widthTodoId(int $todo_id)
Get a clone with a new id.
deleteItem(ToDoItem $item)
getDeadline()
Get the deadline of the item (optional)
getDescription()
Get a description of the item (optional)
updateItem(TodoItem $item)
Update an item in the database.
getTitle()
Get the title of the item.
createItem(TodoItem $item)
Create an item in the database The returned item has an automatically created id. ...