Searched refs:last_activity_date (Results 1 – 12 of 12) sorted by relevance
/plugin/bez/action/ |
D | default.php | 336 $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/ |
D | start.php | 69 …$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/ |
D | update0001.sql | 16 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,
|
D | update0013.sql | 9 … thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
|
D | update0014.sql | 7 … thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
|
D | update0011.sql | 7 … thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
|
D | update0002.sql | 24 … thread.create_date, thread.last_activity_date, thread.last_modification_date, thread.close_date,
|
/plugin/bez/mdl/ |
D | Thread.php | 20 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);
|
D | Task.php | 22 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/ |
D | functions.php | 16 $day_of_issue_last_activity = date('d', strtotime($thread->last_activity_date));
|
/plugin/bez/tpl/ |
D | thread.php | 89 <?php echo $tpl->datetime($tpl->get('thread')->last_activity_date) ?>
|
D | threads.php | 194 <?php echo $tpl->date($thread->last_activity_date) ?>
|