350 lines
10 KiB
PHP
350 lines
10 KiB
PHP
|
<?php
|
||
|
namespace Opencart\Admin\Controller\Localisation;
|
||
|
/**
|
||
|
* Class Location
|
||
|
*
|
||
|
* @package Opencart\Admin\Controller\Localisation
|
||
|
*/
|
||
|
class Location extends \Opencart\System\Engine\Controller {
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function index(): void {
|
||
|
$this->load->language('localisation/location');
|
||
|
|
||
|
$this->document->setTitle($this->language->get('heading_title'));
|
||
|
|
||
|
$url = '';
|
||
|
|
||
|
if (isset($this->request->get['sort'])) {
|
||
|
$url .= '&sort=' . $this->request->get['sort'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['order'])) {
|
||
|
$url .= '&order=' . $this->request->get['order'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['page'])) {
|
||
|
$url .= '&page=' . $this->request->get['page'];
|
||
|
}
|
||
|
|
||
|
$data['breadcrumbs'] = [];
|
||
|
|
||
|
$data['breadcrumbs'][] = [
|
||
|
'text' => $this->language->get('text_home'),
|
||
|
'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'])
|
||
|
];
|
||
|
|
||
|
$data['breadcrumbs'][] = [
|
||
|
'text' => $this->language->get('heading_title'),
|
||
|
'href' => $this->url->link('localisation/location', 'user_token=' . $this->session->data['user_token'] . $url)
|
||
|
];
|
||
|
|
||
|
$data['add'] = $this->url->link('localisation/location.form', 'user_token=' . $this->session->data['user_token'] . $url);
|
||
|
$data['delete'] = $this->url->link('localisation/location.delete', 'user_token=' . $this->session->data['user_token']);
|
||
|
|
||
|
$data['list'] = $this->getList();
|
||
|
|
||
|
$data['user_token'] = $this->session->data['user_token'];
|
||
|
|
||
|
$data['header'] = $this->load->controller('common/header');
|
||
|
$data['column_left'] = $this->load->controller('common/column_left');
|
||
|
$data['footer'] = $this->load->controller('common/footer');
|
||
|
|
||
|
$this->response->setOutput($this->load->view('localisation/location', $data));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function list(): void {
|
||
|
$this->load->language('localisation/location');
|
||
|
|
||
|
$this->response->setOutput($this->getList());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
protected function getList(): string {
|
||
|
if (isset($this->request->get['sort'])) {
|
||
|
$sort = (string)$this->request->get['sort'];
|
||
|
} else {
|
||
|
$sort = 'name';
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['order'])) {
|
||
|
$order = (string)$this->request->get['order'];
|
||
|
} else {
|
||
|
$order = 'ASC';
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['page'])) {
|
||
|
$page = (int)$this->request->get['page'];
|
||
|
} else {
|
||
|
$page = 1;
|
||
|
}
|
||
|
|
||
|
$url = '';
|
||
|
|
||
|
if (isset($this->request->get['sort'])) {
|
||
|
$url .= '&sort=' . $this->request->get['sort'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['order'])) {
|
||
|
$url .= '&order=' . $this->request->get['order'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['page'])) {
|
||
|
$url .= '&page=' . $this->request->get['page'];
|
||
|
}
|
||
|
|
||
|
$data['action'] = $this->url->link('localisation/location.list', 'user_token=' . $this->session->data['user_token'] . $url);
|
||
|
|
||
|
$data['locations'] = [];
|
||
|
|
||
|
$filter_data = [
|
||
|
'sort' => $sort,
|
||
|
'order' => $order,
|
||
|
'start' => ($page - 1) * $this->config->get('config_pagination_admin'),
|
||
|
'limit' => $this->config->get('config_pagination_admin')
|
||
|
];
|
||
|
|
||
|
$this->load->model('localisation/location');
|
||
|
|
||
|
$location_total = $this->model_localisation_location->getTotalLocations();
|
||
|
|
||
|
$results = $this->model_localisation_location->getLocations($filter_data);
|
||
|
|
||
|
foreach ($results as $result) {
|
||
|
$data['locations'][] = [
|
||
|
'location_id' => $result['location_id'],
|
||
|
'name' => $result['name'],
|
||
|
'address' => $result['address'],
|
||
|
'edit' => $this->url->link('localisation/location.form', 'user_token=' . $this->session->data['user_token'] . '&location_id=' . $result['location_id'] . $url)
|
||
|
];
|
||
|
}
|
||
|
|
||
|
$url = '';
|
||
|
|
||
|
if ($order == 'ASC') {
|
||
|
$url .= '&order=DESC';
|
||
|
} else {
|
||
|
$url .= '&order=ASC';
|
||
|
}
|
||
|
|
||
|
$data['sort_name'] = $this->url->link('localisation/location.list', 'user_token=' . $this->session->data['user_token'] . '&sort=name' . $url);
|
||
|
$data['sort_address'] = $this->url->link('localisation/location.list', 'user_token=' . $this->session->data['user_token'] . '&sort=address' . $url);
|
||
|
|
||
|
$url = '';
|
||
|
|
||
|
if (isset($this->request->get['sort'])) {
|
||
|
$url .= '&sort=' . $this->request->get['sort'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['order'])) {
|
||
|
$url .= '&order=' . $this->request->get['order'];
|
||
|
}
|
||
|
|
||
|
$data['pagination'] = $this->load->controller('common/pagination', [
|
||
|
'total' => $location_total,
|
||
|
'page' => $page,
|
||
|
'limit' => $this->config->get('config_pagination_admin'),
|
||
|
'url' => $this->url->link('localisation/location.list', 'user_token=' . $this->session->data['user_token'] . $url . '&page={page}')
|
||
|
]);
|
||
|
|
||
|
$data['results'] = sprintf($this->language->get('text_pagination'), ($location_total) ? (($page - 1) * $this->config->get('config_pagination_admin')) + 1 : 0, ((($page - 1) * $this->config->get('config_pagination_admin')) > ($location_total - $this->config->get('config_pagination_admin'))) ? $location_total : ((($page - 1) * $this->config->get('config_pagination_admin')) + $this->config->get('config_pagination_admin')), $location_total, ceil($location_total / $this->config->get('config_pagination_admin')));
|
||
|
|
||
|
$data['sort'] = $sort;
|
||
|
$data['order'] = $order;
|
||
|
|
||
|
return $this->load->view('localisation/location_list', $data);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function form(): void {
|
||
|
$this->load->language('localisation/location');
|
||
|
|
||
|
$this->document->setTitle($this->language->get('heading_title'));
|
||
|
|
||
|
$data['text_form'] = !isset($this->request->get['location_id']) ? $this->language->get('text_add') : $this->language->get('text_edit');
|
||
|
|
||
|
$url = '';
|
||
|
|
||
|
if (isset($this->request->get['sort'])) {
|
||
|
$url .= '&sort=' . $this->request->get['sort'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['order'])) {
|
||
|
$url .= '&order=' . $this->request->get['order'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['page'])) {
|
||
|
$url .= '&page=' . $this->request->get['page'];
|
||
|
}
|
||
|
|
||
|
$data['breadcrumbs'] = [];
|
||
|
|
||
|
$data['breadcrumbs'][] = [
|
||
|
'text' => $this->language->get('text_home'),
|
||
|
'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'])
|
||
|
];
|
||
|
|
||
|
$data['breadcrumbs'][] = [
|
||
|
'text' => $this->language->get('heading_title'),
|
||
|
'href' => $this->url->link('localisation/location', 'user_token=' . $this->session->data['user_token'] . $url)
|
||
|
];
|
||
|
|
||
|
$data['save'] = $this->url->link('localisation/location.save', 'user_token=' . $this->session->data['user_token']);
|
||
|
$data['back'] = $this->url->link('localisation/location', 'user_token=' . $this->session->data['user_token'] . $url);
|
||
|
|
||
|
if (isset($this->request->get['location_id'])) {
|
||
|
$this->load->model('localisation/location');
|
||
|
|
||
|
$location_info = $this->model_localisation_location->getLocation($this->request->get['location_id']);
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['location_id'])) {
|
||
|
$data['location_id'] = (int)$this->request->get['location_id'];
|
||
|
} else {
|
||
|
$data['location_id'] = 0;
|
||
|
}
|
||
|
|
||
|
$this->load->model('setting/store');
|
||
|
|
||
|
if (!empty($location_info)) {
|
||
|
$data['name'] = $location_info['name'];
|
||
|
} else {
|
||
|
$data['name'] = '';
|
||
|
}
|
||
|
|
||
|
if (!empty($location_info)) {
|
||
|
$data['address'] = $location_info['address'];
|
||
|
} else {
|
||
|
$data['address'] = '';
|
||
|
}
|
||
|
|
||
|
if (!empty($location_info)) {
|
||
|
$data['geocode'] = $location_info['geocode'];
|
||
|
} else {
|
||
|
$data['geocode'] = '';
|
||
|
}
|
||
|
|
||
|
if (!empty($location_info)) {
|
||
|
$data['telephone'] = $location_info['telephone'];
|
||
|
} else {
|
||
|
$data['telephone'] = '';
|
||
|
}
|
||
|
|
||
|
if (!empty($location_info)) {
|
||
|
$data['image'] = $location_info['image'];
|
||
|
} else {
|
||
|
$data['image'] = '';
|
||
|
}
|
||
|
|
||
|
$this->load->model('tool/image');
|
||
|
|
||
|
$data['placeholder'] = $this->model_tool_image->resize('no_image.png', 100, 100);
|
||
|
|
||
|
if (is_file(DIR_IMAGE . html_entity_decode($data['image'], ENT_QUOTES, 'UTF-8'))) {
|
||
|
$data['thumb'] = $this->model_tool_image->resize(html_entity_decode($data['image'], ENT_QUOTES, 'UTF-8'), 100, 100);
|
||
|
} else {
|
||
|
$data['thumb'] = $data['placeholder'];
|
||
|
}
|
||
|
|
||
|
if (!empty($location_info)) {
|
||
|
$data['open'] = $location_info['open'];
|
||
|
} else {
|
||
|
$data['open'] = '';
|
||
|
}
|
||
|
|
||
|
if (!empty($location_info)) {
|
||
|
$data['comment'] = $location_info['comment'];
|
||
|
} else {
|
||
|
$data['comment'] = '';
|
||
|
}
|
||
|
|
||
|
$data['user_token'] = $this->session->data['user_token'];
|
||
|
|
||
|
$data['header'] = $this->load->controller('common/header');
|
||
|
$data['column_left'] = $this->load->controller('common/column_left');
|
||
|
$data['footer'] = $this->load->controller('common/footer');
|
||
|
|
||
|
$this->response->setOutput($this->load->view('localisation/location_form', $data));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function save(): void {
|
||
|
$this->load->language('localisation/location');
|
||
|
|
||
|
$json = [];
|
||
|
|
||
|
if (!$this->user->hasPermission('modify', 'localisation/location')) {
|
||
|
$json['error']['warning'] = $this->language->get('error_permission');
|
||
|
}
|
||
|
|
||
|
if ((oc_strlen($this->request->post['name']) < 3) || (oc_strlen($this->request->post['name']) > 32)) {
|
||
|
$json['error']['name'] = $this->language->get('error_name');
|
||
|
}
|
||
|
|
||
|
if ((oc_strlen($this->request->post['address']) < 3) || (oc_strlen($this->request->post['address']) > 128)) {
|
||
|
$json['error']['address'] = $this->language->get('error_address');
|
||
|
}
|
||
|
|
||
|
if ((oc_strlen($this->request->post['telephone']) < 3) || (oc_strlen($this->request->post['telephone']) > 32)) {
|
||
|
$json['error']['telephone'] = $this->language->get('error_telephone');
|
||
|
}
|
||
|
|
||
|
if (!$json) {
|
||
|
$this->load->model('localisation/location');
|
||
|
|
||
|
if (!$this->request->post['location_id']) {
|
||
|
$json['location_id'] = $this->model_localisation_location->addLocation($this->request->post);
|
||
|
} else {
|
||
|
$this->model_localisation_location->editLocation($this->request->post['location_id'], $this->request->post);
|
||
|
}
|
||
|
|
||
|
$json['success'] = $this->language->get('text_success');
|
||
|
}
|
||
|
|
||
|
$this->response->addHeader('Content-Type: application/json');
|
||
|
$this->response->setOutput(json_encode($json));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function delete(): void {
|
||
|
$this->load->language('localisation/location');
|
||
|
|
||
|
$json = [];
|
||
|
|
||
|
if (isset($this->request->post['selected'])) {
|
||
|
$selected = $this->request->post['selected'];
|
||
|
} else {
|
||
|
$selected = [];
|
||
|
}
|
||
|
|
||
|
if (!$this->user->hasPermission('modify', 'localisation/location')) {
|
||
|
$json['error'] = $this->language->get('error_permission');
|
||
|
}
|
||
|
|
||
|
if (!$json) {
|
||
|
$this->load->model('localisation/location');
|
||
|
|
||
|
foreach ($selected as $location_id) {
|
||
|
$this->model_localisation_location->deleteLocation($location_id);
|
||
|
}
|
||
|
|
||
|
$json['success'] = $this->language->get('text_success');
|
||
|
}
|
||
|
|
||
|
$this->response->addHeader('Content-Type: application/json');
|
||
|
$this->response->setOutput(json_encode($json));
|
||
|
}
|
||
|
}
|