Home
last modified time | relevance | path

Searched refs:get_model (Results 1 – 5 of 5) sorted by relevance

/plugin/bez/
H A Dcli.php22 $threads = $action->get_model()->threadFactory->get_all();
25 $action->get_model()->threadFactory->save($thread);
29 $thread_comments = $action->get_model()->thread_commentFactory->get_all();
32 $action->get_model()->thread_commentFactory->save($thread_comment);
37 $tasks = $action->get_model()->taskFactory->get_all();
40 $action->get_model()->taskFactory->save($task);
45 $task_comments = $action->get_model()->task_commentFactory->get_all();
48 $action->get_model()->task_commentFactory->save($task_comment);
/plugin/bez/meta/
H A DTpl.php33 $this->set('users', $this->action->get_model()->userFactory->get_all());
34 $this->set('groups', $this->action->get_model()->userFactory->get_groups());
58 return $this->action->get_model()->factory($table);
66 $name = $this->action->get_model()->userFactory->get_user_full_name($login);
77 return $this->action->get_model()->userFactory->get_user_email($login);
123 return $this->action->get_model()->user_nick;
127 return $this->action->get_model()->get_level();
/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(
98 $muted_users = $action->get_model()->factory('subscription')->getMutedUsers();
123 // $token = $action->get_model()->factory('subscription')->getUserToken($user);
/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(
H A Dbase.php28 public function get_model() { function in action_plugin_bez_base