Home
last modified time | relevance | path

Searched refs:get_all (Results 1 – 21 of 21) sorted by relevance

/plugin/bez/ctl/
H A Dstart.php48 $threads = $this->model->threadFactory->get_all($filter, 'create_date DESC');
49 $thread_comments = $this->model->thread_commentFactory->get_all($filter, 'create_date DESC');
50 $tasks = $this->model->taskFactory->get_all($filter, 'create_date DESC');
51 $task_comments = $this->model->task_commentFactory->get_all($filter, 'create_date DESC');
107 $proposals = $this->model->threadFactory->get_all($filter, $orderby);
113 $my_threads = $this->model->threadFactory->get_all($filter, $orderby);
119 $my_tasks = $this->model->taskFactory->get_all($filter, $orderby);
125 $reported_threads = $this->model->threadFactory->get_all($filter, $orderby);
131 $reported_tasks = $this->model->taskFactory->get_all($filter, $orderby);
H A Dthreads.php108 $threads = $this->model->threadFactory->get_all($db_filters, $orderby);
110 $this->tpl->set('labels', $this->model->labelFactory->get_all());
H A Dtasks.php103 $tasks = $this->model->taskFactory->get_all($db_filters, $orderby);
105 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name')->fetchAll());
H A Dtask_form.php14 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name'));
H A Dthread_report.php45 $this->tpl->set('labels', $this->model->labelFactory->get_all())
H A Dtypes.php10 $labels = $this->model->labelFactory->get_all();
H A Dtask_programs.php12 $task_programs = $this->model->task_programFactory->get_all([], 'name');
H A Dtask.php18 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name'));
H A Dthread.php39 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name'));
/plugin/bez/
H A Dcli.php22 $threads = $action->get_model()->threadFactory->get_all();
29 $thread_comments = $action->get_model()->thread_commentFactory->get_all();
37 $tasks = $action->get_model()->taskFactory->get_all();
45 $task_comments = $action->get_model()->task_commentFactory->get_all();
/plugin/bez/cron/
H A Dfunctions.php9 $threads = $action->get_model()->threadFactory->get_all(array(
41 $tasks = $action->get_model()->taskFactory->get_all($filters);
59 $threads = $action->get_model()->threadFactory->get_all(array(
76 $tasks = $action->get_model()->taskFactory->get_all(array(
/plugin/bez/mdl/
H A DUserFactory.php13 public function get_all() { function in dokuwiki\\plugin\\bez\\mdl\\UserFactory
67 $users = $this->get_all();
76 $users = $this->get_all();
H A DTask_commentFactory.php10 return $this->get_all(array('task_id' => $task->id), '', array('task' => $task));
H A DThread_commentFactory.php15 return $this->get_all($filters, $orderby, array('thread' => $thread), $limit);
H A DTaskFactory.php36 $tasks = $this->model->taskFactory->get_all(array('thread_id' => $thread->id),
H A DValidator.php131 $wiki_users = $this->model->userFactory->get_all();
H A DThreadFactory.php100 $wiki_users = count($this->model->userFactory->get_all());
H A DFactory.php129 public function get_all($filters=array(), $orderby='', $defaults=array(), $limit=false) { function in dokuwiki\\plugin\\bez\\mdl\\Factory
/plugin/bez/action/
H A Ddefault.php328 $threads = $this->get_model()->factory('thread')->get_all(array(
352 $threads = $this->get_model()->factory('thread')->get_all(array(
375 $threads = $this->get_model()->threadFactory->get_all(array(
398 $tasks = $this->get_model()->factory('task')->get_all(array(
420 $tasks = $this->get_model()->factory('task')->get_all(array(
/plugin/database/
H A Ddatabase.php619 $referenceTable->get_all();
834 $referenceTable->get_all();
1010 $this->get_all();
1049 if (!$this->populated) $this->get_all();
1235 function get_all () { function in Table
1324 $this->get_all();
2376 $tab->get_all();
2456 $tab->get_all();
2468 $tab->get_all();
/plugin/bez/meta/
H A DTpl.php33 $this->set('users', $this->action->get_model()->userFactory->get_all());