Home
last modified time | relevance | path

Searched refs:taskFactory (Results 1 – 14 of 14) sorted by last modified time

/plugin/bez/cron/
H A Dfunctions.php41 $tasks = $action->get_model()->taskFactory->get_all($filters);
76 $tasks = $action->get_model()->taskFactory->get_all(array(
/plugin/bez/ctl/
H A Dactivity_report.php24 $this->tpl->set('task_involvement', $this->model->taskFactory->users_involvement($period));
H A Dtasks.php14 $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 Dthread.php27 $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 D8d.php29 $tasks = $this->model->taskFactory->get_by_type($thread);
H A Dreport.php24 $this->tpl->set('tasks', $this->model->taskFactory->report($period)->fetchAll(PDO::FETCH_ASSOC));
H A Dtask.php15 $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 Dtask_form.php11 $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'));
H A Dkp.php21 $tasks = $this->model->taskFactory->get_with_closing_comment($thread)->fetchAll();
H A Dstart.php50 $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));
/plugin/bez/mdl/
H A DModel.php43 protected $taskFactory; variable in dokuwiki\\plugin\\bez\\mdl\\Model
58 $models = array('userFactory', 'threadFactory', 'labelFactory', 'thread_commentFactory', 'taskFactory', 'task_programFactory', 'task_commentFactory', 'authentication_tokenFactory', 'subscriptionFactory');
103 $this->taskFactory = new TaskFactory($this);
H A DTaskFactory.php36 $tasks = $this->model->taskFactory->get_all(array('thread_id' => $thread->id),
186 if ($this->model->taskFactory->count(array(
H A DTask_comment.php24 $this->task = $this->model->taskFactory->get_one($this->task_id);
/plugin/bez/
H A Dcli.php37 $tasks = $action->get_model()->taskFactory->get_all();
40 $action->get_model()->taskFactory->save($task);