discourse-legacysite-perl/site/coaches/individual.php
2024-06-17 22:42:14 +10:00

246 lines
14 KiB
PHP

<?PHP
include("config.php");
require_once("rating/classes/include.all.php");
$coach_idhere = intval(mysql_escape_string($_GET[coach_id]));
$results = mysql_query("SELECT * FROM ".$prefix."Coaches WHERE coach_id='".$coach_idhere."' LIMIT 1");
$row = mysql_fetch_array($results);
if (!$row){header('Location: '.$site_url.'/?error=invalid_id');}
if($row[coach_valid] == 0) {
if(!is_admin($user)){
header('Location: '.$site_url);
exit();
}
}
// set the page title
$pagetitle = $row[coach_name];
// set meta tags
$meta_keywords = "triathlon, ".$row[coach_name].", ".$row[coach_state]." bike fit";
$meta_description = "Considering getting fit by ".$row[coach_name]."? Here is all of the information about this triathlon coach.";
?>
<? include("include_common_head.php"); ?>
<body class="listings">
<? include($common_path . "/ads/ad_wallpaper.html"); ?>
<div class="container">
<? include($common_path . "/templates/include_header.php"); ?>
<div class="main">
<div class="contentwrapper clearfix">
<? include("include_breadcrumb.php"); ?>
<section class="section listings section-has-widgets section-static remove-sidebar">
<div class="sidebar-b">
<? $selected_item = strtolower($row[coach_state]); ?>
<? include("include_sidebar.php"); ?>
</div>
<div class="content content-has-widgets">
<div class="grid">
<div class="clearfix">
<h1 class="float-left">Triathlon Coaches</h1>
<? if ($user) { ?>
<form method="post" action="wiki_edit.php?retailer_id=<? echo $row[coach_id] ?>">
<input type="submit" value="Edit (wiki)" class="nobutton btn btn-white float-right">
</form>
<? } ?>
<a href="" class="btn btn-white float-right">Back</a>
<hr class="line" />
<? include("../runshops/include_region_list.php"); ?>
<? if($_GET[review_add] == 'ok') { ?>
<p class="success"><strong>Commenter:</strong> your comments have been submitted and will be validated within 24 hours.</p>
<? } ?>
<? if($_GET[wiki_change] == 'success') { ?>
<p class="success"><strong>Editor:</strong> your changes have been submitted and will be validated within 24 hours.</p>
<? } ?>
<? $wikiFetchSQL = "SELECT edit_id FROM ".$prefix."CoachesEdits WHERE coach_id_fk = '".intval(mysql_escape_string($_GET[coach_id]))."'";
$boolEdits = mysql_num_rows(mysql_query($wikiFetchSQL));
if($boolEdits !== 0 && $_GET[wiki_change] != 'success') { ?>
<p class="error"><strong>Group Edits:</strong> there are group edits waiting to be validated.</p>
<? } ?>
<div class="details grid">
<div class="col-9-12">
<h2><? echo stripslashes(stripslashes($row[coach_name])) ; echo " "; ?>
<? if ($row[coach_certifications]) {
$temp_arr = explode(",", $row[coach_certifications]);
if (in_array($st_id, $temp_arr)) {echo "<img src='images/st_cert_22.gif' alt='Slowtwitch Certified Coach'></h2><strong>Slowtwitch Certified Coach</strong>"; } else { echo "</h2>";}
}
?>
</div>
<div class="col-3-12 right">
<? if(is_logged_in($user)) { ?><a href="#comment">Comment</a><? }?>
</div>
<div class="clearfix"></div>
<div class="col-6-12 address">
<? echo stripslashes(htmlspecialchars($row[coach_address])); ?><br />
<? if ( $row[coach_address_two] ) { echo stripslashes(htmlspecialchars($row[coach_address_two]) . "<br />"); } ?>
<? echo stripslashes(htmlspecialchars($row[coach_city])); ?>, <? echo stripslashes(htmlspecialchars($row[coach_state])); ?> <? echo stripslashes(htmlspecialchars($row[coach_zip])); ?><br />
Phone: <? echo stripslashes(htmlspecialchars($row[coach_phone])); ?><br />
Fax: <? echo stripslashes(htmlspecialchars($row[coach_fax])); ?>
</div>
<div class="col-6-12 contact">
Email: <a href="mailto:<? echo $row[coach_email]; ?>"><? echo stripslashes(htmlspecialchars($row[coach_email])); ?></a><br />
<span class="briefy-b">Website: <a href="<? echo $row[coach_website]; ?>" target="_blank"><? echo stripslashes(htmlspecialchars($row[coach_website])); ?></a></span>
</div>
<div class="clearfix"></div>
<br />
<div class="col-1-1">
<? include("include_buttons.php"); ?>
</div>
<div class="col-1-1 detail-block">
<h3>Info</h3>
<div class="highlight-block">
<strong>Education: </strong>
<?
$row[coach_degrees] = ltrim(rtrim($row[coach_degrees], ", "), ", ");
if ($row[coach_degrees]) {
$sql = ("SELECT * FROM ".$prefix."CoachesDegrees WHERE coach_degree_id IN ($row[coach_degrees]) ORDER BY coach_degree_name ASC") OR die(mysql_error());
//echo $sql;
$fetch = mysql_query($sql) or die(mysql_error());
$degree_list = "";
while ($list = mysql_fetch_array($fetch)) {
$degree_list = $degree_list."$list[coach_degree_name], ";
}
$degree_list = rtrim($degree_list, ', ');
}
if ($degree_list) {echo $degree_list;} else {echo "None";}
?><br />
<strong>Certifications: </strong>
<?
$row[coach_certifications] = ltrim(rtrim($row[coach_certifications], ", "), ", ");
if ($row[coach_certifications]) {
$sql = ("SELECT * FROM ".$prefix."CoachesCertifications WHERE coach_certification_id IN ($row[coach_certifications]) ORDER BY coach_certification_name ASC");
//echo $sql;
$fetch = mysql_query($sql) or die(mysql_error());
$certification_list = "";
while ($list = mysql_fetch_array($fetch)) {
$certification_list = $certification_list."$list[coach_certification_name], ";
}
$certification_list = rtrim($certification_list, ', ');
}
if ($certification_list) {echo $certification_list;} else {echo "None";}
?><br />
<strong>Services: </strong>
<?
$row[coach_services] = ltrim(rtrim($row[coach_services], ", "), ", ");
if ($row[coach_services]) {
$sql = ("SELECT * FROM ".$prefix."CoachesServices WHERE coach_service_id IN ($row[coach_services]) ORDER BY coach_service_name ASC");
//echo $sql;
$fetch = mysql_query($sql) or die(mysql_error());
$service_list = "";
while ($list = mysql_fetch_array($fetch)) {
$service_list = $service_list."$list[coach_service_name], ";
}
$service_list = rtrim($service_list, ', ');
}
if ($service_list) {echo $service_list;} else {echo "None";}
?>
</div>
</div>
<div class="col-1-1 detail-block">
<h3>General Info</h3>
<div class="highlight-block">
<strong>General Info: </strong><? echo stripslashes(stripslashes($row[coach_info])) ?><br />
<strong>Rates &amp; Fees: </strong><? echo stripslashes(stripslashes($row[coach_cost])); ?><br />
<strong>Training Camps Offered: </strong><? echo stripslashes(stripslashes($row[coach_camps])); ?>
</div>
</div>
<div class="col-1-1">
<div id="map" class="map map-single" data-name="single" data-category="coach" data-lat="<? echo $row[coach_lat] ?>" data-lng="<? echo $row[coach_lng] ?>">
</div>
<div class="map-description">
<small>
Map location is based off of a geocode of the addressed entered using Google's Google Maps API. If your address does not geocode properly, you can either update the address (we will attempt to re-geocode after any updates to your entry) <strong>or</strong> you can use Google's geocoding tool found here: <a href="http://gmaps-samples.googlecode.com/svn/trunk/geocoder/singlegeocode.html">http://gmaps-samples.googlecode.com/svn/trunk/geocoder/singlegeocode.html</a> to obtain a lat/long for your location and enter that. To use the utility, type in an address that is close to your location and then drag-and-drop the marker to obtain the desired lat/long. If you choose to enter a lat/long, you <strong>must</strong> check the box on the edit page that says, "override geocode with entered lat/long."
</small>
</div>
</div>
<div class="col-1-1 detail-block">
<h3>Who's coached?</h3>
<div class="highlight-block">
<?
$testresults = mysql_query("SELECT coach_user_tags FROM ".$prefix."Coaches WHERE coach_id=$row[coach_id]");
$testrow = mysql_fetch_array($testresults);
$tags = explode(",", $testrow[coach_user_tags]);
$numcount = count($tags) - 1;
if($numcount == 0){ $phrase = "No users have tagged this coach yet."; }
else if($numcount == 1){ $phrase = "There is 1 user who has tagged this coach:"; }
else{ $phrase = "There are $numcount users who have tagged this coach: "; }
?>
<a name="tagged"></a><? echo $phrase; ?>
<?
//List users
$i = 0;
foreach($tags as $value){
if($i > 0){
$tempresults = mysql_query("SELECT user_username FROM ".$prefix."User WHERE user_id='$value'") or die (mysql_error());
$temprow = mysql_fetch_array($tempresults);
if($i > 1){ echo ", "; }
// TODO: SLOWTWITCH EDIT
//echo "<a href=\"profiles/$temprow[user_username].html\">$temprow[user_username]</a>";
// replace the link above with the link below for integration into gforum
echo "<a href=\"http://forum.slowtwitch.com/gforum.cgi?username=$temprow[user_username]&session=".$_SESSION['session_id']."&from=coaches\">$temprow[user_username]</a>";
// TODO: SLOWTWITCH EDIT END
}
$i++;
}
?>
</div>
</div>
</div>
<div class="col-1-1 detail-block">
<?
$testresults = mysql_query("SELECT * FROM ".$prefix."CoachesEditors WHERE coach_id_fk=$row[coach_id] ORDER BY edit_timestamp DESC");
$numcount = mysql_num_rows($testresults);
if($numcount == 0){ $phrase = "No updates have been made this coach yet."; }
else if($numcount == 1){ $phrase = "There has been 1 update to this coach:"; }
else{ $phrase = "There have been $numcount updates to this coach: "; }
echo "<br />";
?>
<h3><a name="editors"></a><? echo $phrase; ?></h3>
<div class="highlight-block">
<?
//List users
$i = 0;
while($row=mysql_fetch_array($testresults)){
if($i >= 0) {
$tempresults = mysql_query("SELECT user_username FROM ".$prefix."User WHERE user_id='$row[user_id_fk]'") or die (mysql_error());
$temprow = mysql_fetch_array($tempresults);
if ($i >= 1) { echo "<br />"; }
echo "<a href=\"http://forum.slowtwitch.com/gforum.cgi?username=$temprow[user_username]&session=".$_SESSION['session_id']."&from=coach\">$temprow[user_username]</a> at ".date("F j, Y g:i A", $row[edit_timestamp]);
}
$i++;
}
if($numcount <= 0) { echo "No users"; }
?>
</div>
</div>
</div>
<div class="content-divider-bottom"></div>
<? include ('comments_show.php'); ?>
</div><!-- end col-2/3 -->
</div><!-- end grid -->
</div><!-- end content -->
</section>
</div><!-- end contentwrapper -->
</div> <!-- end main -->
<? include($common_path . "/templates/include_footer.php") ?>
</div> <!-- container -->
</body>
<? include($common_path . "/templates/include_global_js.php") ?>
</html>