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

93 lines
4.2 KiB
PHP

<?PHP include("config.php");
if(!is_admin($user)){
header('Location:'.$site_url.'/');
}
// Query to fetch non-validated coaches:
$results = mysql_query("SELECT edit_id, coach_name, coach_city, coach_state, coach_info, edit_timestamp, coach_submitted_by, editor_user_id_fk FROM ".$prefix."CoachesEdits ORDER BY edit_timestamp ASC");
// check to see if set is empty
$none = FALSE;
if (mysql_num_rows($results) == 0) { $none = TRUE; }
// set the page title
$pagetitle = "Admin: Coach Edit Validation";
// set meta tags
$meta_keywords = "";
$meta_description = "";
?>
<? 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">
<div class="sidebar-b">
<? include("include_sidebar.php"); ?>
</div>
<div class="content content-has-widgets">
<div class="grid">
<div class="clearfix">
<h1><strong>Unvalidated Public Edits</strong></h1>
<form method="post" action="wiki_validate_X.php" enctype="multipart/form-data">
<?
if($none == TRUE){
echo "There are no edits waiting to be validated.";
}
?>
<div class="dtable">
<?
while($row = mysql_fetch_array($results)){
$arrEditors = mysql_fetch_array(mysql_query("SELECT user_username FROM ".$prefix."User WHERE user_id = ".$row[editor_user_id_fk]." LIMIT 1"));
$editor_user_username = $arrEditors[user_username];
$boolEditorIsOwner = false;
if ($row[editor_user_id_fk] == $row[coach_submitted_by]) { $boolEditorIsOwner = true; }
?>
<div class="drow"><div class="dcell"><a class="sub-hdr" style="margin-left: 5px;" href="<? echo "wiki_view.php?edit_id=$row[edit_id]"; ?>"><? echo $row[coach_name]; ?></a></div></div>
<div class="drow"><div class="dcell"><strong class="indent">Edited on:</strong> <? echo date("F j, Y", $row[edit_timestamp]); ?> by <? echo "<a href=\"http://forum.slowtwitch.com/gforum.cgi?username=".$editor_user_username.";\" target=\"_blank\">".$editor_user_username."</a>"; if ($boolEditorIsOwner) { echo " (original coach submitter)"; } else { echo ""; } ?></div></div>
<div class="drow"><div class="dcell"><strong>Info:</strong>
<?
if(strlen($row[coach_info]) > 400){
$phrase = "&hellip;"; }else{
$phrase = ""; }
echo substr(htmlspecialchars(strip_tags(stripslashes($row[coach_info]))), 0, 160);
echo $phrase;
?>
</div></div>
<div class="drow"><div class="dcell">
<strong>Location:</strong> <? echo "$row[coach_city], $row[coach_state]"; ?><br />
<a class="nav" href="<? echo "wiki_view.php?edit_id=$row[edit_id]"; ?>">More information</a>
<br /><input type="checkbox" value="<? echo($row[edit_id]); ?>" name="validate[]"> Validate this edit. <input type="checkbox" value="<? echo($row[edit_id]); ?>" name="delete[]"> Delete this edit.<br />
</div></div>
<? } ?>
</div>
<input type="submit" value="Process Selected Coaches" class="btn">
</form>
</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>