Server IP : 192.185.129.71 / Your IP : 3.16.50.164 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/views/admin/reports/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <?php init_head(); ?> <div id="wrapper"> <div class="content"> <div class="row"> <div class="col-md-12"> <div class="tw-flex tw-items-center tw-space-x-4 tw-mb-4"> <a href="<?php echo admin_url('reports/leads?type=staff'); ?>" class="btn btn-success"> <?php echo _l('switch_to_general_report'); ?> </a> <p class="text-info inline-block" data-placement="bottom" data-toggle="tooltip" data-title="<?php echo _l('leads_report_converted_notice'); ?>"> <i class="fa-regular fa-circle-question fa-lg"></i> </p> </div> </div> <div class="col-md-6 animated fadeIn"> <div class="panel_s"> <div class="panel-heading"> <h3 class="panel-title"><?php echo _l('report_this_week_leads_conversions'); ?></h3> </div> <div class="panel-body"> <canvas class="leads-this-week" height="150" id="leads-this-week"></canvas> </div> </div> </div> <div class="col-md-6 animated fadeIn"> <div class="panel_s"> <div class="panel-heading"> <h3 class="panel-title"><?php echo _l('report_leads_sources_conversions'); ?></h3> </div> <div class="panel-body"> <canvas class="leads-sources-report" height="150" id="leads-sources-report"></canvas> </div> </div> </div> <div class="col-md-12 animated fadeIn"> <div class="panel_s"> <div class="panel-heading"> <h3 class="panel-title"><?php echo _l('report_leads_monthly_conversions'); ?></h3> </div> <div class="panel-body"> <div class="row"> <div class="col-md-3"> <?php echo '<select name="month" class="selectpicker" data-none-selected-text="' . _l('dropdown_non_selected_tex') . '">' . PHP_EOL; for ($m = 1; $m <= 12; $m++) { $_selected = ''; if ($m == date('m')) { $_selected = ' selected'; } echo ' <option value="' . $m . '"' . $_selected . '>' . _l(date('F', mktime(0, 0, 0, $m, 1))) . '</option>' . PHP_EOL; } echo '</select>' . PHP_EOL; ?> </div> </div> <div class="relative" style="max-height:400px;"> <canvas class="leads-monthly chart mtop20" id="leads-monthly" height="400"></canvas> </div> </div> </div> </div> </div> </div> </div> <?php init_tail(); ?> <script> var MonthlyLeadsChart; $(function() { $.get(admin_url + 'reports/leads_monthly_report/' + $('select[name="month"]').val(), function(response) { var ctx = $('#leads-monthly').get(0).getContext('2d'); MonthlyLeadsChart = new Chart(ctx, { 'type': 'bar', data: response, options: { responsive: true, legend: { display: false, }, scales: { yAxes: [{ ticks: { beginAtZero: true, } }] }, }, }); }, 'json'); $('select[name="month"]').on('change', function() { MonthlyLeadsChart.destroy(); $.get(admin_url + 'reports/leads_monthly_report/' + $('select[name="month"]').val(), function( response) { var ctx = $('#leads-monthly').get(0).getContext('2d'); MonthlyLeadsChart = new Chart(ctx, { 'type': 'bar', data: response, options: { responsive: true, maintainAspectRatio: false, legend: { display: false, }, scales: { yAxes: [{ ticks: { beginAtZero: true, } }] }, }, }); }, 'json'); }); new Chart($("#leads-this-week"), { type: 'pie', data: <?php echo $leads_this_week_report; ?>, option: { responsive: true } }); new Chart($('#leads-sources-report'), { type: 'bar', data: <?php echo $leads_sources_report; ?>, options: { responsive: true, legend: { display: false, }, scales: { yAxes: [{ ticks: { beginAtZero: true, } }] }, }, }); }); </script> </body> </html>