/plugin/bez/ctl/ |
H A D | start.php | 48 $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 D | threads.php | 108 $threads = $this->model->threadFactory->get_all($db_filters, $orderby); 110 $this->tpl->set('labels', $this->model->labelFactory->get_all());
|
H A D | tasks.php | 103 $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 D | task_form.php | 14 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name'));
|
H A D | thread_report.php | 45 $this->tpl->set('labels', $this->model->labelFactory->get_all())
|
H A D | types.php | 10 $labels = $this->model->labelFactory->get_all();
|
H A D | task_programs.php | 12 $task_programs = $this->model->task_programFactory->get_all([], 'name');
|
H A D | task.php | 18 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name'));
|
H A D | thread.php | 39 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name'));
|
/plugin/bez/ |
H A D | cli.php | 22 $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 D | functions.php | 9 $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 D | UserFactory.php | 13 public function get_all() { function in dokuwiki\\plugin\\bez\\mdl\\UserFactory 67 $users = $this->get_all(); 76 $users = $this->get_all();
|
H A D | Task_commentFactory.php | 10 return $this->get_all(array('task_id' => $task->id), '', array('task' => $task));
|
H A D | Thread_commentFactory.php | 15 return $this->get_all($filters, $orderby, array('thread' => $thread), $limit);
|
H A D | TaskFactory.php | 36 $tasks = $this->model->taskFactory->get_all(array('thread_id' => $thread->id),
|
H A D | Validator.php | 131 $wiki_users = $this->model->userFactory->get_all();
|
H A D | ThreadFactory.php | 100 $wiki_users = count($this->model->userFactory->get_all());
|
H A D | Factory.php | 129 public function get_all($filters=array(), $orderby='', $defaults=array(), $limit=false) { function in dokuwiki\\plugin\\bez\\mdl\\Factory
|
/plugin/bez/action/ |
H A D | default.php | 328 $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 D | database.php | 619 $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 D | Tpl.php | 33 $this->set('users', $this->action->get_model()->userFactory->get_all());
|