Exemplo n.º 1
0
 function todayCurSupplyPrecentage()
 {
     $arr = DBDashboard::factoryTotalSupplyOf12Months();
     $tot = DBDashboard::getTodayTotalSupply();
     $count = 0;
     for ($i = 0; $i < 12; $i++) {
         $count = $count + $arr[$i] * 1;
     }
     $count = $count / (12 * 30);
     $count = $tot / $count * 100;
     return round($count, 2);
 }
Exemplo n.º 2
0
            $curmonth = 2;
            break;
    }
}
$strbarchartlabels = substr($strbarchartlabels, 0, -1);
$strbarchartlabels = $strbarchartlabels . "]";
//CHARTs  - line charts
$arrRes1 = $dbdashboard->realTeaRatesOfLast6Months();
$arrRes2 = $dbdashboard->approxTeaRatesOfLast6Months();
$strlinechartRealTRate = "[" . $arrRes1[5] . "," . $arrRes1[4] . "," . $arrRes1[3] . "," . $arrRes1[2] . "," . $arrRes1[1] . "," . $arrRes1[0] . "]";
$strlinechartAppTRate = "[" . $arrRes2[5] . "," . $arrRes2[4] . "," . $arrRes2[3] . "," . $arrRes2[2] . "," . $arrRes2[1] . "," . $arrRes2[0] . "]";
//POP-UP 01
$popup11 = $dbdashboard->totalValueofLast365Days();
$popup12 = $dbdashboard->getThisMonthTotalSupply();
//POP-UP 2
$popup21 = $dbdashboard->getTodayTotalSupply();
if (!$user_home->is_logged_in()) {
    $user_home->redirect('index.php');
}
$stmt = $user_home->runQuery("SELECT * FROM users WHERE id=:uid");
$stmt->execute(array(":uid" => $_SESSION['userSession']));
$row = $stmt->fetch(PDO::FETCH_ASSOC);
$userlevel = $user_home->userPermission($row['id']);
?>
<!DOCTYPE html>
<html>
<title>Dashboard</title>
  <?php 
include "include/head.php";
?>