| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/admin-panel/pages/pro-payments/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/admin-panel/pages/pro-payments/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';
}
}
}
}
$allTypes = array();
foreach ($wo["pro_packages"] as $key => $value) {
$payments = $db->where('time',$this_start,'>=')->where('time',$this_end,'<=')->where('type',$value['name'])->get(T_PAYMENTS);
$wo["pro_packages"][$key]['data_array'] = $array;
foreach ($payments 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 (!empty($wo["pro_packages"][$key]['data_array'])) {
if (in_array($day, array_keys($wo["pro_packages"][$key]['data_array']))) {
$wo["pro_packages"][$key]['data_array'][$day] += 1;
}
}
}
}
?>
<div class="container-fluid">
<div>
<h3>Manage Payments</h3>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="#">Home</a>
</li>
<li class="breadcrumb-item">
<a href="#">Pro System</a>
</li>
<li class="breadcrumb-item active" aria-current="page">Manage Payments</li>
</ol>
</nav>
</div>
<!-- Widgets -->
<div class="row clearfix">
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">TOTAL EARNINGS</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">attach_money</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo Wo_CountAllPayment(); ?></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">EARNINGS THIS MONTH</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">attach_money</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo Wo_CountThisMonthPayment(); ?></div>
</div>
</div>
</div>
</div>
<?php foreach ($wo["pro_packages"] as $key => $value) { ?>
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title"><?php echo($value['name']); ?> SALES</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">
<?php if (!empty($value['image']) || !empty($value['night_image'])) { ?>
<img src="<?php echo(!empty($value['image']) ? $value['image'] : $value['night_image']) ?>" class="pro_packages_icon_inline">
<?php }elseif ($value['id'] == 1) { ?>
<span style="background-color:<?php echo !empty($value['color']) ? $value['color'] : '#4c7737' ?>"><i class="fa fa-star fa-fw"></i> </span>
<?php }elseif ($value['id'] == 2) { ?>
<span style="background-color:<?php echo !empty($value['color']) ? $value['color'] : '#ffbb42' ?>"><i class="fa fa-fire fa-fw"></i> </span>
<?php }elseif ($value['id'] == 3) { ?>
<span style="background-color:<?php echo !empty($value['color']) ? $value['color'] : '#e13c4c' ?>"><i class="fa fa-bolt fa-fw"></i> </span>
<?php }elseif ($value['id'] == 4) { ?>
<span style="background-color:<?php echo !empty($value['color']) ? $value['color'] : '#3f4bb8' ?>"><i class="fa fa-rocket fa-fw"></i> </span>
<?php } ?>
<?php echo $value['name'] ?>
<?php if ($value['time_count'] == 0 && $value["time"] != 'unlimited') { ?>
<div class="alert alert-warning m-0 mt-2 p-2 text-capitalize">Please update the package time</div>
<?php } ?>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo Wo_CountAllPaymentData($value['name']); ?></div>
</div>
</div>
</div>
</div>
<?php } ?>
</div>
<!-- #END# Widgets -->
<div class="row clearfix">
<!-- Bar Chart -->
<div class="col-lg-12">
<div class="card">
<div class="card-body">
<div class="d-flex justify-content-between">
</div>
<p class="text-muted mb-4">Pro Packages Sales</p>
<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="users"></div>
</div>
</div>
</div>
<!-- #END# Bar Chart -->
</div>
</div>
<script type="text/javascript">
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');
$('#redirect_link').attr('href', "<?php echo Wo_LoadAdminLinkSettings('pro-payments'); ?>&range="+$(this).attr('data-range-key'));
$('#redirect_link').attr('data-ajax', "?path=pro-payments&range="+$(this).attr('data-range-key'));
$('#redirect_link').click();
//location.href = "<?php echo Wo_LoadAdminLinkSettings('pro-payments'); ?>?range="+$(this).attr('data-range-key');
}
});
$(document).on('click', '.applyBtn', function(event) {
event.preventDefault();
$(document).off('click', '.applyBtn');
$('#redirect_link').attr('href', "<?php echo Wo_LoadAdminLinkSettings('pro-payments'); ?>&range="+$(this).parent('.drp-buttons').find('.drp-selected').html());
$('#redirect_link').attr('data-ajax', "?path=pro-payments&range="+$(this).parent('.drp-buttons').find('.drp-selected').html());
$('#redirect_link').click();
//location.href = "<?php echo Wo_LoadAdminLinkSettings('pro-payments'); ?>?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 ($('#users').length) {
var options = {
chart: {
type: 'bar',
fontFamily: "Inter",
offsetX: -26,
stacked: false,
height: 265,
width: '102%',
toolbar: {
show: false
}
},
dataLabels: {
enabled: false
},
series: [
<?php $count = 1; foreach ($wo["pro_packages"] as $key => $value) {
echo "{
name: '".$value['name']." Sales',
data: [".implode(', ', $value['data_array'])."],
}".($count != count($wo["pro_packages"]) ? ',' : '');
$count++;
} ?>],
plotOptions: {
bar: {
horizontal: false,
columnWidth: '50%',
endingShape: 'rounded'
},
},
colors: [<?php $count = 1; foreach ($wo["pro_packages"] as $key => $value) {
echo "'".$value['color']."'".($count != count($wo["pro_packages"]) ? ',' : '');
} ?>],
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("#users"),
options
);
chart.render();
}
}
users();
</script>