2006-12-01 00:38:36 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("docutil.php");
|
|
|
|
require_once("help_db.php");
|
|
|
|
require_once("help_funcs.php");
|
|
|
|
|
|
|
|
$lang = $_GET["lang"];
|
|
|
|
|
|
|
|
function vol_info($vol) {
|
|
|
|
$id = $vol->id;
|
|
|
|
$x = "<a href=help_vol.php?volid=$id>$vol->name</a>";
|
|
|
|
return $x;
|
|
|
|
}
|
|
|
|
|
2006-12-04 17:10:39 +00:00
|
|
|
function order_vols($vols) {
|
|
|
|
$online = array();
|
|
|
|
$offline = array();
|
|
|
|
foreach ($vols as $vol) {
|
|
|
|
if (online($vol->status)) {
|
|
|
|
$online[] = $vol;
|
|
|
|
} else {
|
|
|
|
$offline[] = $vol;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
shuffle($online);
|
|
|
|
return array_merge($online, $offline);
|
|
|
|
}
|
|
|
|
|
2006-12-01 00:38:36 +00:00
|
|
|
function vol_modes($vol) {
|
|
|
|
$x = "";
|
|
|
|
if ($vol->voice_ok && $vol->text_ok) {
|
|
|
|
return "Either";
|
|
|
|
}
|
|
|
|
if ($vol->text_ok) {
|
|
|
|
return "Text only";
|
|
|
|
}
|
|
|
|
if ($vol->voice_ok) {
|
|
|
|
return "Voice only";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-02 04:32:22 +00:00
|
|
|
function rating_info($vol) {
|
|
|
|
if ($vol->nratings == 0) {
|
|
|
|
return "<font size=-2>(no ratings)</font>";
|
|
|
|
}
|
|
|
|
$x = $vol->rating_sum/$vol->nratings;
|
|
|
|
if ($x > 4.5) $img = "stars-5-0.gif";
|
|
|
|
else if ($x > 4.0) $img = "stars-4-5.gif";
|
|
|
|
else if ($x > 3.5) $img = "stars-4-0.gif";
|
|
|
|
else if ($x > 3.0) $img = "stars-3-5.gif";
|
|
|
|
else if ($x > 2.5) $img = "stars-3-0.gif";
|
|
|
|
else if ($x > 2.0) $img = "stars-2-5.gif";
|
|
|
|
else if ($x > 1.5) $img = "stars-2-0.gif";
|
|
|
|
else if ($x > 1.0) $img = "stars-1-5.gif";
|
|
|
|
else if ($x > 0.5) $img = "stars-1-0.gif";
|
|
|
|
else if ($x > 0.0) $img = "stars-0-5.gif";
|
|
|
|
else $img = "stars-0-0.gif";
|
|
|
|
return "
|
2006-12-04 17:10:39 +00:00
|
|
|
<nobr><a href=help_ratings.php?volid=$vol->id>
|
2006-12-02 04:32:22 +00:00
|
|
|
<img border=0 src=images/help/$img>
|
|
|
|
<font size=-2>
|
2006-12-04 17:10:39 +00:00
|
|
|
$vol->nratings ratings</font></a></nobr>
|
2006-12-02 04:32:22 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
function info($vol) {
|
2006-12-04 17:10:39 +00:00
|
|
|
$x = "<font size=-1> Country: $vol->country\n";
|
2006-12-02 04:32:22 +00:00
|
|
|
if ($vol->availability) {
|
|
|
|
$x .= "<br>Usual hours: $vol->availability";
|
|
|
|
}
|
2006-12-04 17:10:39 +00:00
|
|
|
if ($vol->specialties) {
|
2006-12-02 04:32:22 +00:00
|
|
|
$x .= "<br>Specialties: $vol->specialties";
|
|
|
|
}
|
|
|
|
if ($vol->projects) {
|
|
|
|
$x .= "<br>Projects: $vol->projects";
|
|
|
|
}
|
|
|
|
$x .= "</font>";
|
|
|
|
return $x;
|
|
|
|
}
|
|
|
|
|
2006-12-01 00:38:36 +00:00
|
|
|
function show_vol($vol) {
|
2006-12-04 17:10:39 +00:00
|
|
|
$status = $vol->status;
|
2006-12-01 00:38:36 +00:00
|
|
|
$image = button_image($status);
|
|
|
|
list_item_array(array(
|
|
|
|
vol_info($vol),
|
|
|
|
status_string($status),
|
2006-12-02 04:32:22 +00:00
|
|
|
vol_modes($vol),
|
|
|
|
info($vol),
|
|
|
|
rating_info($vol)
|
2006-12-01 00:38:36 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_vols($vols) {
|
|
|
|
list_start("border=0");
|
|
|
|
list_heading_array(array(
|
|
|
|
"Volunteer name<br><font size=2>click to contact</font>",
|
|
|
|
"Status",
|
2006-12-02 04:32:22 +00:00
|
|
|
"Voice/Text",
|
|
|
|
"Info",
|
|
|
|
"Feedback <br><font size=-2>Click to see comments</font>",
|
2006-12-01 00:38:36 +00:00
|
|
|
));
|
|
|
|
foreach ($vols as $vol) {
|
|
|
|
show_vol($vol);
|
|
|
|
}
|
|
|
|
list_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
page_head("Online Help in $lang");
|
|
|
|
$vols = get_vols($lang);
|
2006-12-04 17:10:39 +00:00
|
|
|
$vols = order_vols($vols);
|
2006-12-01 00:38:36 +00:00
|
|
|
show_vols($vols);
|
|
|
|
page_tail();
|
|
|
|
?>
|