Example #1
0
<?php

//Include the PS_Pagination class
require_once 'php/db_interface/autoload.php';
$login = new login(true);
if (isset($_POST['sendTweet'])) {
    comms::ListUpdatedSendMessages();
}
/// REMOVE SOMETHING
if (isset($_GET['delete_id'])) {
    $adminList = new adminControlWatchlist($_GET['delete_id']);
    $adminList->Remove();
    highlights::watchlistHighlight($_GET['delete_id'], W_ROW_DELETE, 0, highlights::EVENT_START_DAY);
}
// Create all new tickers
$counter = 1;
while (true) {
    if (!isset($_POST["ticker" . $counter]) || strlen(trim($_POST["ticker" . $counter])) <= 0) {
        break;
    }
    $tradeType = $_POST["type" . $counter];
    $tickerName = $_POST["ticker" . $counter];
    $tickerLow = floatval($_POST["low" . $counter]);
    $tickerHigh = floatval($_POST["high" . $counter]);
    $className = adminControlWatchlist::GetWatchClassName($tradeType);
    $newTicker = new $className();
    $newTicker->AddNewTickerAndWatch($tickerName, $tickerLow, $tickerHigh);
    $counter++;
}
// Load the information from the database
$tradeTypesToUseInDropdown = array(PULLBACK_TRADE, BACKDRAFT_TRADE, BREAKOUT_TRADE, BREAKDOWN_TRADE);