Lines Matching refs:timeline
11 protected $timeline = array(); variable in Timeline
24 if (!isset($this->timeline[$date])) $timeline[$date] = array();
25 $this->timeline[$date][] = array('time' => $time,
33 krsort($this->timeline);
36 foreach ($this->timeline as &$elm) {
41 return $this->timeline;
53 $timeline = new Timeline(); variable
63 …$timeline->push($thread->create_date, 'thread_proposal' . $project, $thread->original_poster, $thr…
65 … $timeline->push($thread->create_date, 'thread_opened' . $project, $thread->coordinator, $thread);
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, $…
81 …$timeline->push($thread_comment->create_date, 'thread_comment_added', $thread_comment->author, $th…
83 …$timeline->push($thread_comment->create_date, 'thread_comment_cause_added', $thread_comment->autho…
90 $timeline->push($task->create_date, 'task_opened', $task->assignee, $task);
93 $timeline->push($task->last_activity_date, 'task_done', $task->assignee, $task);
100 …$timeline->push($task_comment->create_date, 'task_comment_added', $task_comment->author, $task_com…
103 $this->tpl->set('timeline', $timeline->get_assoc());