Home
last modified time | relevance | path

Searched refs:thread (Results 1 – 25 of 76) sorted by path

1234

/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe
/plugin/amcharts/assets/amcharts/plugins/dataloader/
H A Dreadme.md32 For more about loading data across domains use the following thread:
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.min.js.map1thread-safe.\n\t */\n\tvar virgin = true;\n\n\tvar lenfix, distfix; // We have no pointers in JS, …
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/
H A DMessage.php265 public function setThread(Thread $thread) argument
267 $this->thread = $thread;
274 return $this->thread;
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md50 …* Fixed StreamHandler thread safety - chunk size set to 2GB now to avoid interlacing when doing co…
/plugin/authucenter/lib/uc_client/model/
H A Dpm.php130 while($thread = $this->db->fetch_array($query)) {
131 $plidarr[] = $thread['plid'];
232 while($thread = $this->db->fetch_array($query)) {
233 $existplid[$thread['min_max']] = $thread['plid'];
544 $thread = $this->db->fetch_first("SELECT * FROM ".UC_DBTABLEPRE."pm_lists WHERE plid='$plid'");
545 if($thread['pmtype'] != 1) {
550 if($thread['authorid'] == $uid) {
/plugin/bez/action/
H A Ddefault.php328 $threads = $this->get_model()->factory('thread')->get_all(array(
334 /** @var bez\mdl\Thread $thread */
335 foreach ($threads as $thread) {
336 $link = '<a href="' . $this->url('thread', 'id', $thread->id) . '">';
337 $link .= '#' . $thread->id;
343 'id' => 'thread:' . $thread->id,
346 'timestamp' => strtotime($thread->last_activity_date)
352 $threads = $this->get_model()->factory('thread')
[all...]
/plugin/bez/
H A Dcli.php23 foreach ($threads as $thread) {
24 $thread->purge();
25 $action->get_model()->threadFactory->save($thread);
26 echo "Thread #" . $thread->id . " purged\n";
/plugin/bez/cron/
H A Dfunctions.php14 foreach ($threads as $thread) {
16 $day_of_issue_last_activity = date('d', strtotime($thread->last_activity_date));
19 $thread->mail_notify_inactive($thread->get_participants('subscribent'));
64 foreach ($threads as $thread) {
65 $key = $thread->coordinator;
73 $msg[$key]['issues'][] = $thread;
/plugin/bez/ctl/
H A D8d.php17 /** @var bez\mdl\Thread $thread */
18 $thread = $this->model->threadFactory->get_one($this->get_param('id')); variable
19 $this->tpl->set('thread', $thread);
22 get_from_thread($thread, array('type' => 'cause'))->fetchAll());
25 get_from_thread($thread, array('type' => 'risk'))->fetchAll());
28 get_from_thread($thread, array('type' => 'opportunity'))->fetchAll());
29 $tasks = $this->model->taskFactory->get_by_type($thread);
H A Dkp.php17 /** @var bez\mdl\Thread $thread */
18 $thread = $this->model->threadFactory->get_one($this->get_param('id')); variable
19 $this->tpl->set('thread', $thread);
21 $tasks = $this->model->taskFactory->get_with_closing_comment($thread)->fetchAll();
H A Dstart.php54 foreach ($threads as $thread) {
55 if ($thread->acl_of('id') < BEZ_PERMISSION_VIEW) continue;
58 if ($thread->type == 'project') {
62 if ($thread->state == 'proposal') {
63 $timeline->push($thread->create_date, 'thread_proposal' . $project, $thread->original_poster, $thread);
65 $timeline->push($thread->create_date, 'thread_opened' . $project, $thread->coordinator, $thread);
[all...]
H A Dtask.php65 $task_comment = $this->model->task_commentFactory->get_one($this->get_param('zkid'), array('thread' => $thread));
86 header('Location: ' . $this->url('thread', 'id', $task->thread_id));
H A Dthread.php14 /** @var bez\mdl\Thread $thread */
15 $thread = $this->model->threadFactory->get_one($this->get_param('id')); variable
17 if ($thread->acl_of('id') < BEZ_PERMISSION_VIEW) {
21 $this->tpl->set('thread', $thread);
22 if ($thread->type == 'project') {
26 $thread_comments = iterator_to_array($this->model->thread_commentFactory->get_from_thread($thread));
27 $tasks = $this->model->taskFactory->get_from_thread($thread);
42 $thread_comment = $this->model->thread_commentFactory->create_object(array('thread' => $thread));
[all...]
H A Dthread_report.php12 /** @var \dokuwiki\plugin\bez\mdl\Thread $thread */
13 $thread = $this->model->threadFactory->get_one($thread_id); variable
15 $thread = $this->model->threadFactory->create_object(); variable
18 $this->tpl->set('thread', $thread);
24 $this->tpl->set_values($thread->get_assoc());
27 $this->model->threadFactory->update_save($thread, $_POST);
29 header('Location: ?id='.$this->id('thread', 'id', $thread->id));
37 // $thread
[all...]
/plugin/bez/db/
H A Dupdate0001.sql1 CREATE TABLE thread ( table
6 closed_by TEXT NULL, -- who closed or rejected the thread
30 ON thread (last_activity_date); -- to speedup order by
33 thread_id INTEGER NOT NULL REFERENCES thread (id),
52 thread_id INTEGER NOT NULL REFERENCES thread (id),
69 thread.coordinator AS coordinator
71 JOIN thread ON thread_comment.thread_id = thread.id;
163 thread_id INTEGER REFERENCES thread (id), --may be null
179 UPDATE thread
[all...]
H A Dupdate0002.sql4 UPDATE thread SET state='opened' WHERE state='done';
11 thread.coordinator AS coordinator,
18 LEFT JOIN thread ON task.thread_id = thread.id;
22 SELECT thread.id, thread.original_poster, thread.coordinator, thread.closed_by,
23 thread.private, thread
[all...]
H A Dupdate0003.sql4 UPDATE thread
8 UPDATE thread
19 UPDATE thread
H A Dupdate0005.sql1 UPDATE thread SET state='opened' WHERE state='done'
H A Dupdate0011.sql5 SELECT thread.id, thread.original_poster, thread.coordinator, thread.closed_by,
6 thread.private, thread.lock, thread.type,
7 thread.create_date, thread.last_activity_date, thread
[all...]
H A Dupdate0012.sql6 UPDATE thread
10 UPDATE thread
H A Dupdate0013.sql7 SELECT thread.id, thread.original_poster, thread.coordinator, thread.closed_by,
8 thread.private, thread.lock, thread.type,
9 thread.create_date, thread.last_activity_date, thread
[all...]
H A Dupdate0014.sql5 SELECT thread.id, thread.original_poster, thread.coordinator, thread.closed_by,
6 thread.private, thread.lock, thread.type,
7 thread.create_date, thread.last_activity_date, thread
[all...]
/plugin/bez/mdl/
H A DTask.php31 protected $thread;
63 if ($property == 'thread') {
67 if ($this->thread == null || $this->thread_id != $this->thread->id) {
68 $this->thread = $this->model->threadFactory->get_one($this->thread_id);
70 return $this->thread;
112 if (isset($defaults['thread'])) {
113 $this->thread = $defaults['thread'];
114 $this->thread_id = $this->thread
30 protected $thread; global() variable in dokuwiki\\plugin\\bez\\mdl\\Task
[all...]
H A DTaskFactory.php35 public function get_from_thread(Thread $thread) { argument
36 $tasks = $this->model->taskFactory->get_all(array('thread_id' => $thread->id),
37 'thread_comment_id', false, array('thread' => $thread));
52 public function get_with_closing_comment($thread) { argument
60 $stmt = $this->model->sqlite->query($sql, $thread->id);
66 public function get_by_type($thread) { argument
67 $stmt = $this->get_with_closing_comment($thread);
156 $task->thread->set_participant_flags($task->assignee, array('subscribent', 'task_assignee'));
157 $task->thread
[all...]

1234