Home
last modified time | relevance | path

Searched refs:get_one (Results 1 – 13 of 13) sorted by relevance

/plugin/bez/ctl/
H A Dthread.php15 $thread = $this->model->threadFactory->get_one($this->get_param('id'));
83 $thread_comment = $this->model->thread_commentFactory->get_one($this->get_param('kid'), array('thread' => $thread));
89 $thread_comment = $this->model->thread_commentFactory->get_one($this->get_param('kid'), array('thread' => $thread));
104 $thread_comment = $this->model->thread_commentFactory->get_one($this->get_param('kid'), array('thread' => $thread));
120 $task = $this->model->taskFactory->get_one($this->get_param('tid'), array('thread' => $thread));
134 $task = $this->model->taskFactory->get_one($this->get_param('tid'), array('thread' => $thread));
H A Dtask.php15 $task = $this->model->taskFactory->get_one($this->get_param('tid'));
59 $task_comment = $this->model->task_commentFactory->get_one($this->get_param('zkid'), array('task' => $task));
65 $task_comment = $this->model->task_commentFactory->get_one($this->get_param('zkid'), array('thread' => $thread));
H A Dtasks.php14 $task = $this->model->taskFactory->get_one($id);
19 $task = $this->model->taskFactory->get_one($id);
H A Dkp.php18 $thread = $this->model->threadFactory->get_one($this->get_param('id'));
H A Dtask_form.php20 $task_dup = $this->model->taskFactory->get_one($this->get_param('duplicate'));
H A Dthread_report.php13 $thread = $this->model->threadFactory->get_one($thread_id);
H A Dtypes.php15 $label = $this->model->labelFactory->get_one($this->get_param('id'));
H A Dtask_programs.php15 $task_program = $this->model->task_programFactory->get_one($this->get_param('id'));
H A D8d.php18 $thread = $this->model->threadFactory->get_one($this->get_param('id'));
/plugin/bez/mdl/
H A DTask_comment.php24 $this->task = $this->model->taskFactory->get_one($this->task_id);
H A DThread_comment.php31 $this->thread = $this->model->threadFactory->get_one($this->thread_id);
H A DTask.php67 $this->thread = $this->model->threadFactory->get_one($this->thread_id);
76 $this->thread_comment = $this->model->thread_commentFactory->get_one($this->thread_comment_id);
H A DFactory.php184 public function get_one($id, $defaults=array()) { function in dokuwiki\\plugin\\bez\\mdl\\Factory