|
|
|
@ -117,10 +117,11 @@ class BlockTeacherGraph extends Block { |
|
|
|
|
$username = $teacher_info['username']; |
|
|
|
|
$time_by_days = array(); |
|
|
|
|
foreach ($a_last_week as $day) { |
|
|
|
|
$start_date = date('Y-m-d 00:00:00', $day); |
|
|
|
|
$end_date = date('Y-m-d 23:59:59', $day); |
|
|
|
|
// day is received as y-m-d 12:00:00 |
|
|
|
|
$start_date = api_get_utc_datetime($day); |
|
|
|
|
$end_date = api_get_utc_datetime($day+(3600*24-1)); |
|
|
|
|
|
|
|
|
|
$time_on_platform_by_day = Tracking::get_time_spent_on_the_platform($user_id, 'custom', $start_date, $end_date); |
|
|
|
|
$time_on_platform_by_day = Tracking::get_time_spent_on_the_platform($user_id, 'custom', $start_date, $end_date); |
|
|
|
|
$hours = floor($time_on_platform_by_day / 3600); |
|
|
|
|
$min = floor(($time_on_platform_by_day - ($hours * 3600)) / 60); |
|
|
|
|
$time_by_days[] = $min; |
|
|
|
|