Searched refs:taskFactory (Results 1 – 14 of 14) sorted by last modified time
/plugin/bez/ctl/ |
H A D | task.php | 15 $task = $this->model->taskFactory->get_one($this->get_param('tid')); 80 $this->model->taskFactory->update_save($task, $_POST); 84 $this->model->taskFactory->delete($task);
|
H A D | tasks.php | 14 $task = $this->model->taskFactory->get_one($id); 15 $this->model->taskFactory->delete($task); 19 $task = $this->model->taskFactory->get_one($id); 21 $this->model->taskFactory->save($task); 54 $years = $this->model->taskFactory->get_years_scope(); 103 $tasks = $this->model->taskFactory->get_all($db_filters, $orderby);
|
H A D | thread.php | 27 $tasks = $this->model->taskFactory->get_from_thread($thread); 108 $task = $this->model->taskFactory->create_object($defaults); 113 $this->model->taskFactory->initial_save($task, $_POST); 120 $task = $this->model->taskFactory->get_one($this->get_param('tid'), array('thread' => $thread)); 127 $this->model->taskFactory->update_save($task, $_POST); 134 $task = $this->model->taskFactory->get_one($this->get_param('tid'), array('thread' => $thread)); 135 $this->model->taskFactory->delete($task);
|
H A D | 8d.php | 29 $tasks = $this->model->taskFactory->get_by_type($thread);
|
H A D | activity_report.php | 24 $this->tpl->set('task_involvement', $this->model->taskFactory->users_involvement($period));
|
H A D | kp.php | 21 $tasks = $this->model->taskFactory->get_with_closing_comment($thread)->fetchAll();
|
H A D | report.php | 24 $this->tpl->set('tasks', $this->model->taskFactory->report($period)->fetchAll(PDO::FETCH_ASSOC));
|
H A D | start.php | 50 $tasks = $this->model->taskFactory->get_all($filter, 'create_date DESC'); 119 $my_tasks = $this->model->taskFactory->get_all($filter, $orderby); 121 $this->tpl->set('my_tasks_count', $this->model->taskFactory->count($filter)); 131 $reported_tasks = $this->model->taskFactory->get_all($filter, $orderby); 133 $this->tpl->set('reported_tasks_count', $this->model->taskFactory->count($filter));
|
H A D | task_form.php | 11 $task = $this->model->taskFactory->create_object(); 17 $this->model->taskFactory->initial_save($task, $_POST); 20 $task_dup = $this->model->taskFactory->get_one($this->get_param('duplicate'));
|
/plugin/bez/mdl/ |
H A D | Model.php | 43 protected $taskFactory; variable in dokuwiki\\plugin\\bez\\mdl\\Model 103 $this->taskFactory = new TaskFactory($this);
|
H A D | TaskFactory.php | 36 $tasks = $this->model->taskFactory->get_all(array('thread_id' => $thread->id), 186 if ($this->model->taskFactory->count(array(
|
H A D | Task_comment.php | 24 $this->task = $this->model->taskFactory->get_one($this->task_id);
|
/plugin/bez/cron/ |
H A D | functions.php | 41 $tasks = $action->get_model()->taskFactory->get_all($filters); 76 $tasks = $action->get_model()->taskFactory->get_all(array(
|
/plugin/bez/ |
H A D | cli.php | 37 $tasks = $action->get_model()->taskFactory->get_all(); 40 $action->get_model()->taskFactory->save($task);
|