check
[Anonymous-Twitter-Board.git] / view-queue.php
blob6779b5d243f68ab612d2e5021eda1e80522f10a8
1 <?php
3 error_reporting (0);
4 require("class/board-level-database-connection.php");
5 require("class/board-functions.php");
6 ?>
8 <html>
9 <head>
10 <base href="boards.verniy.xyz">
11 <?php //echo'<link rel="stylesheet" type="text/css" href="rsc/board-style.css?'.time().'2" />' ?>
12 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
13 <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
14 <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
15 <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
16 </head>
17 <body class="">
19 <?php BoardFunctions::buildNavBar(); ?>
22 <div class="">
23 <div id="top-settings" class="jumbotron">
24 <h1 class="display-4">Next Posts</h1>
25 <div id='timer-container'><strong>Time Until Next Update: </strong>
26 <span id='time'></span>
27 </div>
28 </div>
29 <script src="rsc/board-script.js?16"></script>
31 <div style="margin:3% 10%" id="queue-form-container">
33 <?php
35 echo '<p>The next tweets to be posted are as follows.
36 "Withheld" implies it did not pass the spam filter,
37 "Passed" means it will be posted on the regular 15 minute update timer.</p>';
40 $connection = new BoardLevelDatabaseConnection();
42 $connection->deleteFromTable("SubmissionTicket", "IPAddress", $_SERVER["HTTP_X_REAL_IP"]);
43 BoardFunctions::displayTabularJoin("Tweet", "Unsubmitted", "PostID", 3, true, $connection);
45 </div>
46 </div>
47 </div>
48 </body>
49 </html>