Home
last modified time | relevance | path

Searched refs:last_activity_date (Results 1 – 12 of 12) sorted by relevance

/plugin/bez/action/
Ddefault.php336 $givenDate = new DateTime($thread->last_activity_date);
346 … 'id' => 'thread:' . $thread->id . ':without_tasks:' . $thread->last_activity_date,
349 'timestamp' => strtotime($thread->last_activity_date)
370 'id' => 'thread:' . $thread->id . ':coming:' . $thread->last_activity_date,
373 'timestamp' => strtotime($thread->last_activity_date)
393 'id' => 'thread:' . $thread->id . ':outdated:' . $thread->last_activity_date,
396 'timestamp' => strtotime($thread->last_activity_date)
/plugin/bez/ctl/
Dstart.php69 …$timeline->push($thread->last_activity_date, 'thread_done' . $project, $thread->coordinator, $thre…
71 …$timeline->push($thread->last_activity_date, 'thread_closed' . $project, $thread->coordinator, $th…
73 …$timeline->push($thread->last_activity_date, 'thread_rejected' . $project, $thread->coordinator, $…
93 $timeline->push($task->last_activity_date, 'task_done', $task->assignee, $task);
/plugin/bez/db/
Dupdate0001.sql16 last_activity_date TEXT NOT NULL, -- ISO8601 field
30 ON thread (last_activity_date); -- to speedup order by
150 last_activity_date TEXT NOT NULL, -- -- ISO8601 field
376 … thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
Dupdate0013.sql9 … thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
Dupdate0014.sql7 … thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
Dupdate0011.sql7 … thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
Dupdate0002.sql24 … thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
/plugin/bez/mdl/
DThread.php20 protected $create_date, $last_activity_date, $last_modification_date, $close_date;
77 $this->last_activity_date = $this->create_date;
136 $this->last_activity_date = $this->last_modification_date;
191 $this->last_activity_date = date('c');
193 $this->last_activity_date, $this->id);
DTask.php22 protected $create_date, $last_activity_date, $last_modification_date, $close_date;
107 $this->last_activity_date = $this->create_date;
273 $this->last_activity_date = $this->last_modification_date;
318 $this->last_activity_date = date('c');
320 $this->last_activity_date, $this->id);
/plugin/bez/cron/
Dfunctions.php16 $day_of_issue_last_activity = date('d', strtotime($thread->last_activity_date));
/plugin/bez/tpl/
Dthread.php89 <?php echo $tpl->datetime($tpl->get('thread')->last_activity_date) ?>
Dthreads.php194 <?php echo $tpl->date($thread->last_activity_date) ?>