Файл: upload/admin/controller/dashboard/customer.php
Строк: 30
<?php
class ControllerDashboardCustomer extends Controller {
public function index() {
$this->load->language('dashboard/customer');
$data['heading_title'] = $this->language->get('heading_title');
$data['text_view'] = $this->language->get('text_view');
$data['token'] = $this->session->data['token'];
// Total Orders
$this->load->model('customer/customer');
$today = $this->model_customer_customer->getTotalCustomers(array('filter_date_added' => date('Y-m-d', strtotime('-1 day'))));
$yesterday = $this->model_customer_customer->getTotalCustomers(array('filter_date_added' => date('Y-m-d', strtotime('-2 day'))));
$difference = $today - $yesterday;
if ($difference && $today) {
$data['percentage'] = round(($difference / $today) * 100);
} else {
$data['percentage'] = 0;
}
$customer_total = $this->model_customer_customer->getTotalCustomers();
if ($customer_total > 1000000000000) {
$data['total'] = round($customer_total / 1000000000000, 1) . 'T';
} elseif ($customer_total > 1000000000) {
$data['total'] = round($customer_total / 1000000000, 1) . 'B';
} elseif ($customer_total > 1000000) {
$data['total'] = round($customer_total / 1000000, 1) . 'M';
} elseif ($customer_total > 1000) {
$data['total'] = round($customer_total / 1000, 1) . 'K';
} else {
$data['total'] = $customer_total;
}
$data['customer'] = $this->url->link('customer/customer', 'token=' . $this->session->data['token'], 'SSL');
return $this->load->view('dashboard/customer.tpl', $data);
}
}