Fifth pass at adding key files
This commit is contained in:
		
							
								
								
									
										105
									
								
								site/runshops/wiki_validate.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										105
									
								
								site/runshops/wiki_validate.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,105 @@
 | 
			
		||||
<?PHP include("config.php");
 | 
			
		||||
 | 
			
		||||
if(!is_admin()){
 | 
			
		||||
  header('Location:'.$site_url.'/');
 | 
			
		||||
  exit(); 
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Query to fetch non-validated running stores:
 | 
			
		||||
$results = mysql_query("SELECT edit_id, runshop_name, runshop_city, runshop_state, runshop_info, edit_timestamp, runshop_submitted_by, editor_user_id_fk FROM ".$prefix."RunshopsEdits 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: Running Store 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>Unvalidated Public Edits</h1>
 | 
			
		||||
                <hr class="line" />
 | 
			
		||||
                <form method="post" action="wiki_validate_X.php"  enctype="multipart/form-data">
 | 
			
		||||
                  <p>
 | 
			
		||||
                    <?
 | 
			
		||||
                    if($none == TRUE){
 | 
			
		||||
                      echo "There are no edits waiting to be validated.";
 | 
			
		||||
                    }
 | 
			
		||||
                    ?>
 | 
			
		||||
                  </p>
 | 
			
		||||
 | 
			
		||||
                  <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[runshop_submitted_by]) { $boolEditorIsOwner = true; }
 | 
			
		||||
 | 
			
		||||
                  ?>
 | 
			
		||||
                    <div class="drow"><div class="dcell"><a href="<? echo "wiki_view.php?edit_id=$row[edit_id]"; ?>"><? echo $row[runshop_name]; ?></a></div></div>
 | 
			
		||||
                    <div class="drow"><div class="dcell">Edited on: <? 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 submitter)"; } else { echo ""; } ?></div></div>
 | 
			
		||||
                    <div class="drow">
 | 
			
		||||
                      <div class="dcell">Info:
 | 
			
		||||
                      <? 
 | 
			
		||||
                            if(strlen($row[runshop_info]) > 400){
 | 
			
		||||
                            $phrase = "…"; }else{
 | 
			
		||||
                            $phrase = ""; }
 | 
			
		||||
                            
 | 
			
		||||
                            echo substr(htmlspecialchars(stripslashes($row[runshop_info])), 0, 160); 
 | 
			
		||||
                            echo $phrase; 
 | 
			
		||||
                      ?>
 | 
			
		||||
                      </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    
 | 
			
		||||
                    <div class="drow">
 | 
			
		||||
                      <div class="dcell">
 | 
			
		||||
                        <strong>Location:</strong> <? echo "$row[runshop_city], $row[runshop_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.
 | 
			
		||||
                      </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                  <? } ?>
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <input type="submit" value="Process Selected Running Stores" 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>
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user