boinc/html/user/bolt.php

72 lines
2.2 KiB
PHP
Raw Normal View History

<?php
// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2008 University of California
//
// BOINC is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// BOINC is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
require_once("../inc/bolt_db.inc");
require_once("../inc/util.inc");
require_once("../inc/bolt_util.inc");
page_head("Courses");
$user = get_logged_in_user(false);
if ($user) {
BoltUser::lookup($user);
}
$courses = BoltCourse::enum();
2007-11-29 02:56:10 +00:00
start_table();
table_header(
"Course", "Status"
2007-11-29 02:56:10 +00:00
);
foreach ($courses as $course) {
if ($course->hidden && !($user->bolt->flags&BOLT_FLAG_SHOW_ALL)) {
continue;
}
2007-11-29 02:56:10 +00:00
$e = $user?BoltEnrollment::lookup($user->id, $course->id):null;
if ($e) {
$start = date_str($e->create_time);
$view = BoltView::lookup_id($e->last_view_id);
$ago = time_diff(time() - $view->start_time);
$pct = number_format($view->fraction_done*100, 0);
$status = "Started $start
<br>Last visit: $ago ago
<br>$pct% done
";
if ($view->fraction_done < 1) {
$status .= "<br><a href=bolt_sched.php?course_id=$course->id&action=resume>Resume</a>
";
}
$status .= "<br><a href=bolt_sched.php?course_id=$course->id&action=start>Restart</a>
2008-08-21 23:24:11 +00:00
| <a href=bolt_course.php?course_id=$course->id>History</a>
";
2007-11-29 02:56:10 +00:00
} else {
$status = "
<a href=bolt_sched.php?course_id=$course->id&action=start>Start</a>
";
}
row2_init("<b>$course->name</b>
2007-11-29 02:56:10 +00:00
<br><span class=note>$course->description</span>",
$status
);
show_refreshes();
echo "</td></tr>\n";
}
2007-11-29 02:56:10 +00:00
end_table();
page_tail();
?>