Home
last modified time | relevance | path

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

/plugin/bez/ctl/
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);
Dthreads.php108 $threads = $this->model->threadFactory->get_all($db_filters, $orderby);
110 $this->tpl->set('labels', $this->model->labelFactory->get_all());
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()…
Dtask_form.php14 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name'));
Dthread_report.php45 $this->tpl->set('labels', $this->model->labelFactory->get_all());
Dtask_programs.php12 $task_programs = $this->model->task_programFactory->get_all([], 'name');
Dtypes.php10 $labels = $this->model->labelFactory->get_all();
Dtask.php18 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name'));
Dthread.php39 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name'));
/plugin/bez/cron/
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/
DUserFactory.php13 public function get_all() { function in dokuwiki\\plugin\\bez\\mdl\\UserFactory
67 $users = $this->get_all();
76 $users = $this->get_all();
DTask_commentFactory.php10 return $this->get_all(array('task_id' => $task->id), '', array('task' => $task));
DThread_commentFactory.php15 return $this->get_all($filters, $orderby, array('thread' => $thread), $limit);
DValidator.php131 $wiki_users = $this->model->userFactory->get_all();
DTaskFactory.php36 $tasks = $this->model->taskFactory->get_all(array('thread_id' => $thread->id),
DThreadFactory.php100 $wiki_users = count($this->model->userFactory->get_all());
DFactory.php129 public function get_all($filters=array(), $orderby='', $defaults=array(), $limit=false) { function in dokuwiki\\plugin\\bez\\mdl\\Factory
/plugin/bez/action/
Ddefault.php325 $threads = $this->get_model()->factory('thread')->get_all(array(
356 $threads = $this->get_model()->factory('thread')->get_all(array(
379 $threads = $this->get_model()->threadFactory->get_all(array(
402 $tasks = $this->get_model()->factory('task')->get_all(array(
424 $tasks = $this->get_model()->factory('task')->get_all(array(
/plugin/database/
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/
DTpl.php33 $this->set('users', $this->action->get_model()->userFactory->get_all());