| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/admin-panel/pages/dashboard/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/admin-panel/pages/dashboard/content.phtml |
<?php
$this_start = strtotime("1 January ".date('Y')." 12:00am");
$this_end = strtotime("31 December ".date('Y')." 11:59pm");
$array = array('01' => 0 ,'02' => 0 ,'03' => 0 ,'04' => 0 ,'05' => 0 ,'06' => 0 ,'07' => 0 ,'08' => 0 ,'09' => 0 ,'10' => 0 ,'11' => 0 ,'12' => 0);
$code = 'm';
$main_range = 'This Year';
$title = "Yearly";
if (!empty($_GET['range']) && in_array($_GET['range'], array('Today','Yesterday','This Week','This Month','Last Month'))) {
if ($_GET['range'] == 'Today' || $_GET['range'] == 'Yesterday') {
$array = array('00' => 0 ,'01' => 0 ,'02' => 0 ,'03' => 0 ,'04' => 0 ,'05' => 0 ,'06' => 0 ,'07' => 0 ,'08' => 0 ,'09' => 0 ,'10' => 0 ,'11' => 0 ,'12' => 0 ,'13' => 0 ,'14' => 0 ,'15' => 0 ,'16' => 0 ,'17' => 0 ,'18' => 0 ,'19' => 0 ,'20' => 0 ,'21' => 0 ,'22' => 0 ,'23' => 0);
$this_start = strtotime(date('M')." ".date('d').", ".date('Y')." 12:00am");
$this_end = strtotime(date('M')." ".date('d').", ".date('Y')." 11:59pm");
if ($_GET['range'] == 'Yesterday') {
$this_start = strtotime(date('M')." ".date('d',strtotime("-1 days")).", ".date('Y')." 12:00am");
$this_end = strtotime(date('M')." ".date('d',strtotime("-1 days")).", ".date('Y')." 11:59pm");
}
$code = 'H';
$main_range = 'Today';
$title = "Daily";
}
elseif ($_GET['range'] == 'This Week') {
$time = strtotime(date('l').", ".date('M')." ".date('d').", ".date('Y'));
if (date('l') == 'Saturday') {
$this_start = strtotime(date('M')." ".date('d').", ".date('Y')." 12:00am");
}
else{
$this_start = strtotime('last saturday, 12:00am', $time);
}
if (date('l') == 'Friday') {
$this_end = strtotime(date('M')." ".date('d').", ".date('Y')." 11:59pm");
}
else{
$this_end = strtotime('next Friday, 11:59pm', $time);
}
$array = array('Saturday' => 0 , 'Sunday' => 0 , 'Monday' => 0 , 'Tuesday' => 0 , 'Wednesday' => 0 , 'Thursday' => 0 , 'Friday' => 0);
$code = 'l';
$main_range = 'This Week';
$title = "Weekly";
}
elseif ($_GET['range'] == 'This Month' ||$_GET['range'] == 'Last Month') {
$this_start = strtotime("1 ".date('M')." ".date('Y')." 12:00am");
$this_end = strtotime(cal_days_in_month(CAL_GREGORIAN, date('m'), date('Y'))." ".date('M')." ".date('Y')." 11:59pm");
$array = array_fill(1, cal_days_in_month(CAL_GREGORIAN, date('m'), date('Y')),0);
$month_days = cal_days_in_month(CAL_GREGORIAN, date('m'), date('Y'));
if ($_GET['range'] == 'Last Month') {
$this_start = strtotime("1 ".date('M',strtotime("-1 month"))." ".date('Y')." 12:00am");
$this_end = strtotime(cal_days_in_month(CAL_GREGORIAN, date('m',strtotime("-1 month")), date('Y'))." ".date('M',strtotime("-1 month"))." ".date('Y')." 11:59pm");
$array = array_fill(1, cal_days_in_month(CAL_GREGORIAN, date('m',strtotime("-1 month")), date('Y')),0);
$month_days = cal_days_in_month(CAL_GREGORIAN, date('m',strtotime("-1 month")), date('Y'));
}
if (cal_days_in_month(CAL_GREGORIAN, date('m'), date('Y')) == 31) {
$array = array('01' => 0 ,'02' => 0 ,'03' => 0 ,'04' => 0 ,'05' => 0 ,'06' => 0 ,'07' => 0 ,'08' => 0 ,'09' => 0 ,'10' => 0 ,'11' => 0 ,'12' => 0 ,'13' => 0 ,'14' => 0 ,'15' => 0 ,'16' => 0 ,'17' => 0 ,'18' => 0 ,'19' => 0 ,'20' => 0 ,'21' => 0 ,'22' => 0 ,'23' => 0,'24' => 0 ,'25' => 0 ,'26' => 0 ,'27' => 0 ,'28' => 0 ,'29' => 0 ,'30' => 0 ,'31' => 0);
}elseif (cal_days_in_month(CAL_GREGORIAN, date('m'), date('Y')) == 30) {
$array = array('01' => 0 ,'02' => 0 ,'03' => 0 ,'04' => 0 ,'05' => 0 ,'06' => 0 ,'07' => 0 ,'08' => 0 ,'09' => 0 ,'10' => 0 ,'11' => 0 ,'12' => 0 ,'13' => 0 ,'14' => 0 ,'15' => 0 ,'16' => 0 ,'17' => 0 ,'18' => 0 ,'19' => 0 ,'20' => 0 ,'21' => 0 ,'22' => 0 ,'23' => 0,'24' => 0 ,'25' => 0 ,'26' => 0 ,'27' => 0 ,'28' => 0 ,'29' => 0 ,'30' => 0);
}elseif (cal_days_in_month(CAL_GREGORIAN, date('m'), date('Y')) == 29) {
$array = array('01' => 0 ,'02' => 0 ,'03' => 0 ,'04' => 0 ,'05' => 0 ,'06' => 0 ,'07' => 0 ,'08' => 0 ,'09' => 0 ,'10' => 0 ,'11' => 0 ,'12' => 0 ,'13' => 0 ,'14' => 0 ,'15' => 0 ,'16' => 0 ,'17' => 0 ,'18' => 0 ,'19' => 0 ,'20' => 0 ,'21' => 0 ,'22' => 0 ,'23' => 0,'24' => 0 ,'25' => 0 ,'26' => 0 ,'27' => 0 ,'28' => 0 ,'29' => 0);
}elseif (cal_days_in_month(CAL_GREGORIAN, date('m'), date('Y')) == 28) {
$array = array('01' => 0 ,'02' => 0 ,'03' => 0 ,'04' => 0 ,'05' => 0 ,'06' => 0 ,'07' => 0 ,'08' => 0 ,'09' => 0 ,'10' => 0 ,'11' => 0 ,'12' => 0 ,'13' => 0 ,'14' => 0 ,'15' => 0 ,'16' => 0 ,'17' => 0 ,'18' => 0 ,'19' => 0 ,'20' => 0 ,'21' => 0 ,'22' => 0 ,'23' => 0,'24' => 0 ,'25' => 0 ,'26' => 0 ,'27' => 0 ,'28' => 0);
}
$code = 'd';
$main_range = 'This Month';
$title = "Monthly";
}
}
$start = '';
$end = '';
$first_code = '';
$second_code = '';
if (!empty($_GET['range']) && !in_array($_GET['range'], array('Today','Yesterday','This Week','This Month','Last Month','This Year'))) {
$arr = explode('-', $_GET['range']);
if (preg_match('~(0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])[- /.](19|20)\d\d~m', $arr[0]) && preg_match('~(0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])[- /.](19|20)\d\d~m', $arr[1])) {
$start = Wo_Secure($arr[0]);
$end = Wo_Secure($arr[1]);
$this_start = strtotime($start);
$this_end = strtotime($end);
$month_days = cal_days_in_month(CAL_GREGORIAN, date('m',strtotime($start)), date('Y',strtotime($start)));
$diff = abs(strtotime($end) - strtotime($start));
$years = floor($diff / (365*60*60*24));
$months = floor(($diff - $years * 365*60*60*24) / (30*60*60*24));
$days = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24)/ (60*60*24));
if ($years >= 1) {
$array = array();
for ($i=date('Y',strtotime($start)); $i <= date('Y',strtotime($end)); $i++) {
$array["'".$i."'"] = 0;
}
$main_range = 'Custom';
$code = 'Y';
$title = "Yearly";
}
elseif ($months >= 1) {
$array = array('01' => 0 ,'02' => 0 ,'03' => 0 ,'04' => 0 ,'05' => 0 ,'06' => 0 ,'07' => 0 ,'08' => 0 ,'09' => 0 ,'10' => 0 ,'11' => 0 ,'12' => 0);
$code = 'm';
$main_range = 'This Year';
$title = "Monthly";
if (date('Y',strtotime($start)) == date('Y',strtotime($end))) {
$array = array();
for ($i=date('m',strtotime($start)); $i <= date('m',strtotime($end)); $i++) {
$array["'".(int)$i."'"] = 0;
}
$code = 'm';
$main_range = 'Custom';
}
else{
$month = cal_days_in_month(CAL_GREGORIAN, date('m',strtotime($start)), date('Y',strtotime($start)));
$array = array();
for ($i=(int)date('m',strtotime($start)); $i <= 12; $i++) {
$array["'".(int)$i.'-'.date('Y',strtotime($start))."'"] = 0;
}
for ($i=1; $i <= (int)date('m',strtotime($end)); $i++) {
$array["'".(int)$i.'-'.date('Y',strtotime($end))."'"] = 0;
}
$first_code = 'm';
$second_code = 'Y';
$main_range = 'Custom';
}
}
elseif ($days > 7) {
if (date('m',strtotime($start)) == date('m',strtotime($end))) {
$array = array();
for ($i=date('d',strtotime($start)); $i <= date('d',strtotime($end)); $i++) {
$array["'".(int)$i."'"] = 0;
}
$code = 'd';
$main_range = 'Custom';
}
else{
$month = cal_days_in_month(CAL_GREGORIAN, date('m',strtotime($start)), date('Y',strtotime($start)));
$array = array();
for ($i=(int)date('d',strtotime($start)); $i <= $month; $i++) {
$array["'".(int)$i.'-'.date('m',strtotime($start))."'"] = 0;
}
for ($i=1; $i <= (int)date('d',strtotime($end)); $i++) {
$array["'".(int)$i.'-'.date('m',strtotime($end))."'"] = 0;
}
$first_code = 'd';
$second_code = 'm';
$main_range = 'Custom';
}
$title = "Daily";
}
elseif ($days >= 1 && $days < 8) {
$title = "Daily";
$code = 'l';
$array = array('Saturday' => 0 , 'Sunday' => 0 , 'Monday' => 0 , 'Tuesday' => 0 , 'Wednesday' => 0 , 'Thursday' => 0 , 'Friday' => 0);
if (date('m',strtotime($start)) == date('m',strtotime($end))) {
$array = array();
for ($i=date('d',strtotime($start)); $i <= date('d',strtotime($end)); $i++) {
$array["'".(int)$i."'"] = 0;
}
$code = 'd';
$main_range = 'Custom';
}
else{
$month = cal_days_in_month(CAL_GREGORIAN, date('m',strtotime($start)), date('Y',strtotime($start)));
$array = array();
for ($i=(int)date('d',strtotime($start)); $i <= $month; $i++) {
$array["'".(int)$i.'-'.date('m',strtotime($start))."'"] = 0;
}
for ($i=1; $i <= (int)date('d',strtotime($end)); $i++) {
$array["'".(int)$i.'-'.date('m',strtotime($end))."'"] = 0;
}
$first_code = 'd';
$second_code = 'm';
$main_range = 'Custom';
}
}
}
}
$users_array = $array;
$posts_array = $array;
$pages_array = $array;
$groups_array = $array;
$users = $db->where('joined',$this_start,'>=')->where('joined',$this_end,'<=')->get(T_USERS,null,array('joined'));
foreach ($users as $key => $value) {
$day = date($code,$value->joined);
if ($main_range == 'Custom' && !empty($first_code) && !empty($second_code)) {
$day = "'".(int)date($first_code,$value->joined).'-'.(int)date($second_code,$value->joined)."'";
}
elseif ($main_range == 'Custom') {
$day = "'".(int)date($code,$value->joined)."'";
}
if (in_array($day, array_keys($users_array))) {
$users_array[$day] += 1;
}
}
$u_array = implode(', ', $users_array);
$users = array();
$users_array = array();
$posts = $db->where('time',$this_start,'>=')->where('time',$this_end,'<=')->get(T_POSTS,null,array('time'));
foreach ($posts as $key => $value) {
$day = date($code,$value->time);
if ($main_range == 'Custom' && !empty($first_code) && !empty($second_code)) {
$day = "'".(int)date($first_code,$value->time).'-'.(int)date($second_code,$value->time)."'";
}
elseif ($main_range == 'Custom') {
$day = "'".(int)date($code,$value->time)."'";
}
if (in_array($day, array_keys($posts_array))) {
$posts_array[$day] += 1;
}
}
$p_array = implode(', ', $posts_array);
$posts = array();
$posts_array = array();
$pages = $db->where('time',$this_start,'>=')->where('time',$this_end,'<=')->get(T_PAGES,null,array('time'));
foreach ($pages as $key => $value) {
$day = date($code,$value->time);
if ($main_range == 'Custom' && !empty($first_code) && !empty($second_code)) {
$day = "'".(int)date($first_code,$value->time).'-'.(int)date($second_code,$value->time)."'";
}
elseif ($main_range == 'Custom') {
$day = "'".(int)date($code,$value->time)."'";
}
if (in_array($day, array_keys($pages_array))) {
$pages_array[$day] += 1;
}
}
$pa_array = implode(', ', $pages_array);
$pages = array();
$pages_array = array();
$groups = $db->where('time',$this_start,'>=')->where('time',$this_end,'<=')->get(T_GROUPS,null,array('time'));
foreach ($groups as $key => $value) {
$day = date($code,$value->time);
if ($main_range == 'Custom' && !empty($first_code) && !empty($second_code)) {
$day = "'".(int)date($first_code,$value->time).'-'.(int)date($second_code,$value->time)."'";
}
elseif ($main_range == 'Custom') {
$day = "'".(int)date($code,$value->time)."'";
}
if (in_array($day, array_keys($groups_array))) {
$groups_array[$day] += 1;
}
}
$g_array = implode(', ', $groups_array);
$groups = array();
$groups_array = array();
?>
<div class="container-fluid">
<div>
<h3>Welcome back, <?php echo $wo['user']['name'];?></h3>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="#">Home</a>
</li>
<li class="breadcrumb-item active" aria-current="page">DASHBOARD</li>
</ol>
</nav>
</div>
<!-- Widgets -->
<?php $getStatus = getStatus(); if (!empty($getStatus) && !empty(checkIfThereIsError($getStatus))) {?><div class="alert alert-danger"><strong>Important!</strong> There are some errors found on your system, please review <a href="<?php echo Wo_LoadAdminLinkSettings('system_status'); ?>" data-ajax="?path=system_status">System Status</a>.</div><?php }?>
<div class="row clearfix">
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">TOTAL USERS</h6>
<div class="d-flex align-items-center mb-3">
<div>
<div class="avatar">
<span class="avatar-title bg-primary-bright text-primary rounded-pill">
<i class="material-icons">people</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo number_format(Wo_CountAllData('user')); ?></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">TOTAL POSTS</h6>
<div class="d-flex align-items-center mb-3">
<div>
<div class="avatar">
<span class="avatar-title bg-info-bright text-info rounded-pill">
<i class="material-icons">border_color</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo number_format(Wo_CountAllData('posts')); ?></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">TOTAL PAGES</h6>
<div class="d-flex align-items-center mb-3">
<div>
<div class="avatar">
<span class="avatar-title bg-warning-bright text-warning rounded-pill">
<i class="material-icons">flag</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo number_format(Wo_CountAllData('page')); ?></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">TOTAL GROUPS</h6>
<div class="d-flex align-items-center mb-3">
<div>
<div class="avatar">
<span class="avatar-title bg-secondary-bright text-secondary rounded-pill">
<i class="material-icons">supervisor_account</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo number_format(Wo_CountAllData('group')); ?></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">ONLINE USERS</h6>
<div class="d-flex align-items-center mb-3">
<div>
<div class="avatar">
<span class="avatar-title bg-success-bright text-success rounded-pill">
<i class="material-icons">people</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo number_format(Wo_CountOnlineData()); ?></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">TOTAL COMMENTS</h6>
<div class="d-flex align-items-center mb-3">
<div>
<div class="avatar">
<span class="avatar-title bg-primary-bright text-primary rounded-pill">
<i class="material-icons">comment</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo number_format(Wo_CountAllData('comments')); ?></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">TOTAL GAMES</h6>
<div class="d-flex align-items-center mb-3">
<div>
<div class="avatar">
<span class="avatar-title bg-info-bright text-info rounded-pill">
<i class="material-icons">videogame_asset</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo number_format(Wo_CountAllData('games')); ?></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">TOTAL MESSAGES</h6>
<div class="d-flex align-items-center mb-3">
<div>
<div class="avatar">
<span class="avatar-title bg-warning-bright text-warning rounded-pill">
<i class="material-icons">message</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo number_format(Wo_CountAllData('messages')); ?></div>
</div>
</div>
</div>
</div>
</div>
<!-- #END# Widgets -->
<div class="row clearfix">
<!-- Bar Chart -->
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="card">
<div class="card-body">
<h6 class="card-title">STATICS</h6>
<div class="row">
<div class="col-md-11"></div>
<div class="col-md-1">
<div id="dashboard-daterangepicker" class="btn btn-outline-light">
<?php
if (!empty($_GET['range']) && in_array($_GET['range'], array('Today','Yesterday','This Week','This Month','Last Month','This Year'))) {
echo $_GET['range'];
}else if (!empty($start) && !empty($end)){
echo $_GET['range'];
}else{
echo 'This Year';
} ?>
</div>
</div>
</div>
<div id="admin-chart-container" style="min-width: 100%; height: 400px; margin: 0 auto;"></div>
</div>
</div>
</div>
<!-- #END# Bar Chart -->
</div>
</div>
<script>
jQuery(document).ready(function($) {
var range = { "Today": [moment() , moment()],
"Yesterday": [moment().subtract(1, 'days') , moment().subtract(1, 'days')],
"This_Week": [moment().subtract(6, 'days') , moment()],
"This_Month": [moment().startOf('month') , moment().endOf('month')],
"Last_Month": [moment().subtract(1, 'month').startOf('month') , moment().subtract(1, 'month').endOf('month')],
"This_Year": [moment().subtract(1, 'year').startOf('year') , moment().subtract(1, 'year').endOf('year')]};
<?php
if (!empty($_GET['range']) && in_array($_GET['range'], array('Today','Yesterday','This Week','This Month','Last Month','This Year'))) {
if ($_GET['range'] == 'Today') { ?>
var start = range.Today[0];
var end = range.Today[1];
<?php }elseif ($_GET['range'] == 'Yesterday') { ?>
var start = range.Yesterday[0];
var end = range.Yesterday[1];
<?php }elseif ($_GET['range'] == 'This Week') { ?>
var start = range.This_Week[0];
var end = range.This_Week[1];
<?php }elseif ($_GET['range'] == 'This Month') { ?>
var start = range.This_Month[0];
var end = range.This_Month[1];
<?php }elseif ($_GET['range'] == 'Last Month') { ?>
var start = range.Last_Month[0];
var end = range.Last_Month[1];
<?php }elseif ($_GET['range'] == 'This Year') { ?>
var start = range.This_Year[0];
var end = range.This_Year[1];
<?php } ?>
<?php } elseif (!empty($_GET['range']) && !empty($start) && !empty($end)) { ?>
var start = "<?php echo($start) ?>";
var end = "<?php echo($end) ?>";
<?php } else{ ?>
var start = range.This_Year[0];
var end = range.This_Year[1];
<?php } ?>
function cb(start, end) {
//$('#dashboard-daterangepicker span').html(start.format('MMMM D, YYYY') + ' - ' + end.format('MMMM D, YYYY'));
}
$('#dashboard-daterangepicker').daterangepicker({
startDate: start,
endDate: end,
opens: $('body').hasClass('rtl') ? 'right' : 'left',
ranges: {
'Today': [moment(), moment()],
'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
'This Week': [moment().subtract(6, 'days'), moment()],
'This Month': [moment().startOf('month'), moment().endOf('month')],
'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')],
'This Year': [moment().subtract(1, 'year').startOf('year'), moment().subtract(1, 'year').endOf('year')],
}
}, cb);
cb(start, end);
// setTimeout(function (argument) {
// $('.ranges ul li').removeClass('active');
// },800);
$(document).on('click', '.ranges ul li', function(event) {
event.preventDefault();
if ($(this).attr('data-range-key') != 'Custom Range') {
$(document).off('click', '.ranges ul li');
//location.href = "<?php echo Wo_LoadAdminLinkSettings('dashboard'); ?>?range="+$(this).attr('data-range-key');
$('#redirect_link').attr('href', "<?php echo Wo_LoadAdminLinkSettings('dashboard'); ?>?range="+$(this).attr('data-range-key'));
$('#redirect_link').attr('data-ajax', "?path=dashboard//range="+$(this).attr('data-range-key'));
$('#redirect_link').click();
}
});
$(document).on('click', '.applyBtn', function(event) {
event.preventDefault();
$(document).off('click', '.applyBtn');
$('#redirect_link').attr('href', "<?php echo Wo_LoadAdminLinkSettings('dashboard'); ?>?range="+$(this).parent('.drp-buttons').find('.drp-selected').html());
$('#redirect_link').attr('data-ajax', "?path=dashboard//range="+$(this).parent('.drp-buttons').find('.drp-selected').html());
$('#redirect_link').click();
//location.href = "<?php echo Wo_LoadAdminLinkSettings('dashboard'); ?>?range="+$('.drp-selected').html();
});
var rgbToHex = function (rgb) {
var hex = Number(rgb).toString(16);
if (hex.length < 2) {
hex = "0" + hex;
}
return hex;
};
var fullColorHex = function (r, g, b) {
var red = rgbToHex(r);
var green = rgbToHex(g);
var blue = rgbToHex(b);
return red + green + blue;
};
var colors = {
primary: $('.colors .bg-primary').css('background-color'),
primaryLight: $('.colors .bg-primary-bright').css('background-color'),
secondary: $('.colors .bg-secondary').css('background-color'),
secondaryLight: $('.colors .bg-secondary-bright').css('background-color'),
info: $('.colors .bg-info').css('background-color'),
infoLight: $('.colors .bg-info-bright').css('background-color'),
success: $('.colors .bg-success').css('background-color'),
successLight: $('.colors .bg-success-bright').css('background-color'),
danger: $('.colors .bg-danger').css('background-color'),
dangerLight: $('.colors .bg-danger-bright').css('background-color'),
warning: $('.colors .bg-warning').css('background-color'),
warningLight: $('.colors .bg-warning-bright').css('background-color'),
};
//console.log(colors.primary[1]);
colors.primary = '#' + fullColorHex(colors.primary[0], colors.primary[1], colors.primary[2]);
colors.secondary = '#' + fullColorHex(colors.secondary[0], colors.secondary[1], colors.secondary[2]);
colors.info = '#' + fullColorHex(colors.info[0], colors.info[1], colors.info[2]);
colors.success = '#' + fullColorHex(colors.success[0], colors.success[1], colors.success[2]);
colors.danger = '#' + fullColorHex(colors.danger[0], colors.danger[1], colors.danger[2]);
colors.warning = '#' + fullColorHex(colors.warning[0], colors.warning[1], colors.warning[2]);
});
function users() {
if ($('#admin-chart-container').length) {
var options = {
chart: {
type: 'bar',
fontFamily: "Inter",
offsetX: -26,
stacked: false,
height: 265,
width: '102%',
toolbar: {
show: false
}
},
dataLabels: {
enabled: false
},
series: [{
name: 'Users',
data: [<?php echo $u_array; ?>]
},{
name: 'Posts',
data: [<?php echo $p_array; ?>]
},{
name: 'Pages',
data: [<?php echo $pa_array; ?>]
},{
name: 'Groups',
data: [<?php echo $g_array; ?>]
}],
plotOptions: {
bar: {
horizontal: false,
columnWidth: '50%',
endingShape: 'rounded'
},
},
colors: ['#6abd46', '#ce3d3d', '#f2b92b', '#ff7373'],
xaxis: {
<?php if ($main_range == 'Today' || $main_range == 'Yesterday') { ?>
categories: [
'00 AM',
'1 AM',
'2 AM',
'3 AM',
'4 AM',
'5 AM',
'6 AM',
'7 AM',
'8 AM',
'9 AM',
'10 AM',
'11 AM',
'12 PM',
'1 PM',
'2 PM',
'3 PM',
'4 PM',
'5 PM',
'6 PM',
'7 PM',
'8 PM',
'9 PM',
'10 PM',
'11 PM'
]
<?php }elseif ($main_range == 'This Week') { ?>
categories: [
'Saturday',
'Sunday',
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday'
]
<?php }elseif ($main_range == 'This Month') { ?>
<?php if ($month_days == 31) { ?>
categories: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31]
<?php }elseif ($month_days == 30) { ?>
categories: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30]
<?php }elseif ($month_days == 29) { ?>
categories: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29]
<?php }elseif ($month_days == 28) { ?>
categories: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28]
<?php } ?>
<?php }elseif ($main_range == 'This Year') { ?>
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct','Nov','Dec']
<?php }elseif ($main_range == 'Custom') {
echo "categories: [".implode(',',array_keys($array))."]";
} ?>
},
tooltip: {
y: {
formatter: function (val) {
return val
}
}
}
};
var chart = new ApexCharts(
document.querySelector("#admin-chart-container"),
options
);
chart.render();
}
}
users();
</script>