Home
last modified time | relevance | path

Searched refs:thread_commentFactory (Results 1 – 8 of 8) sorted by relevance

/plugin/bez/ctl/
H A Dthread.php26 $thread_comments = iterator_to_array($this->model->thread_commentFactory->get_from_thread($thread));
42 $thread_comment = $this->model->thread_commentFactory->create_object(array('thread' => $thread));
47 $this->model->thread_commentFactory->initial_save($thread_comment, $_POST);
83 $thread_comment = $this->model->thread_commentFactory->get_one($this->get_param('kid'), array('thread' => $thread));
84 $this->model->thread_commentFactory->delete($thread_comment);
89 $thread_comment = $this->model->thread_commentFactory->get_one($this->get_param('kid'), array('thread' => $thread));
94 $this->model->thread_commentFactory->update_save($thread_comment, $_POST);
104 $thread_comment = $this->model->thread_commentFactory->get_one($this->get_param('kid'), array('thread' => $thread));
H A D8d.php21 $this->model->thread_commentFactory->
24 $this->model->thread_commentFactory->
27 $this->model->thread_commentFactory->
H A Dreport.php25 $this->tpl->set('comments', $this->model->thread_commentFactory->report($period));
H A Dstart.php49 $thread_comments = $this->model->thread_commentFactory->get_all($filter, 'create_date DESC');
/plugin/bez/
H A Dcli.php29 $thread_comments = $action->get_model()->thread_commentFactory->get_all();
32 $action->get_model()->thread_commentFactory->save($thread_comment);
/plugin/bez/mdl/
H A DModel.php40 protected $thread_commentFactory; variable in dokuwiki\\plugin\\bez\\mdl\\Model
58 $models = array('userFactory', 'threadFactory', 'labelFactory', 'thread_commentFactory', 'taskFactory', 'task_programFactory', 'task_commentFactory', 'authentication_tokenFactory', 'subscriptionFactory');
101 $this->thread_commentFactory = new Thread_commentFactory($this);
H A DThread.php449 $r = $this->model->thread_commentFactory->get_from_thread($this, array(), 'id DESC', 1);
H A DTask.php76 $this->thread_comment = $this->model->thread_commentFactory->get_one($this->thread_comment_id);