Файл: upload-2031-rs1/catalog/controller/affiliate/transaction.php
Строк: 173
<?php
class ControllerAffiliateTransaction extends Controller {
public function index() {
if (!$this->affiliate->isLogged()) {
$this->session->data['redirect'] = $this->url->link('affiliate/transaction', '', 'SSL');
$this->response->redirect($this->url->link('affiliate/login', '', 'SSL'));
}
$this->load->language('affiliate/transaction');
$this->document->setTitle($this->language->get('heading_title'));
$data['breadcrumbs'] = array();
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/home')
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_account'),
'href' => $this->url->link('affiliate/account', '', 'SSL')
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_transaction'),
'href' => $this->url->link('affiliate/transaction', '', 'SSL')
);
$this->load->model('affiliate/transaction');
$data['heading_title'] = $this->language->get('heading_title');
$data['column_date_added'] = $this->language->get('column_date_added');
$data['column_description'] = $this->language->get('column_description');
$data['column_amount'] = sprintf($this->language->get('column_amount'), $this->config->get('config_currency'));
$data['text_balance'] = $this->language->get('text_balance');
$data['text_empty'] = $this->language->get('text_empty');
$data['button_continue'] = $this->language->get('button_continue');
if (isset($this->request->get['page'])) {
$page = $this->request->get['page'];
} else {
$page = 1;
}
$data['transactions'] = array();
$filter_data = array(
'sort' => 't.date_added',
'order' => 'DESC',
'start' => ($page - 1) * 10,
'limit' => 10
);
$transaction_total = $this->model_affiliate_transaction->getTotalTransactions();
$results = $this->model_affiliate_transaction->getTransactions($filter_data);
foreach ($results as $result) {
$data['transactions'][] = array(
'amount' => $this->currency->format($result['amount'], $this->config->get('config_currency')),
'description' => $result['description'],
'date_added' => date($this->language->get('date_format_short'), strtotime($result['date_added']))
);
}
$pagination = new Pagination();
$pagination->total = $transaction_total;
$pagination->page = $page;
$pagination->limit = 10;
$pagination->url = $this->url->link('affiliate/transaction', 'page={page}', 'SSL');
$data['pagination'] = $pagination->render();
$data['results'] = sprintf($this->language->get('text_pagination'), ($transaction_total) ? (($page - 1) * 10) + 1 : 0, ((($page - 1) * 10) > ($transaction_total - 10)) ? $transaction_total : ((($page - 1) * 10) + 10), $transaction_total, ceil($transaction_total / 10));
$data['balance'] = $this->currency->format($this->model_affiliate_transaction->getBalance());
$data['continue'] = $this->url->link('affiliate/account', '', 'SSL');
$data['column_left'] = $this->load->controller('common/column_left');
$data['column_right'] = $this->load->controller('common/column_right');
$data['content_top'] = $this->load->controller('common/content_top');
$data['content_bottom'] = $this->load->controller('common/content_bottom');
$data['footer'] = $this->load->controller('common/footer');
$data['header'] = $this->load->controller('common/header');
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/affiliate/transaction.tpl')) {
$this->response->setOutput($this->load->view($this->config->get('config_template') . '/template/affiliate/transaction.tpl', $data));
} else {
$this->response->setOutput($this->load->view('default/template/affiliate/transaction.tpl', $data));
}
}
}