first commit
This commit is contained in:
320
admininistrator/controller/cms/antispam.php
Normal file
320
admininistrator/controller/cms/antispam.php
Normal file
@ -0,0 +1,320 @@
|
||||
<?php
|
||||
namespace Opencart\Admin\Controller\Cms;
|
||||
/**
|
||||
* Class Anti-Spam
|
||||
*
|
||||
* @package Opencart\Admin\Controller\Cms
|
||||
*/
|
||||
class Antispam extends \Opencart\System\Engine\Controller {
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function index(): void {
|
||||
$this->load->language('cms/antispam');
|
||||
|
||||
$this->document->setTitle($this->language->get('heading_title'));
|
||||
|
||||
if (isset($this->request->get['filter_keyword'])) {
|
||||
$filter_keyword = (string)$this->request->get['filter_keyword'];
|
||||
} else {
|
||||
$filter_keyword = '';
|
||||
}
|
||||
|
||||
$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('cms/antispam', 'user_token=' . $this->session->data['user_token'] . $url)
|
||||
];
|
||||
|
||||
$data['add'] = $this->url->link('cms/antispam.form', 'user_token=' . $this->session->data['user_token'] . $url);
|
||||
$data['delete'] = $this->url->link('cms/antispam.delete', 'user_token=' . $this->session->data['user_token']);
|
||||
|
||||
$data['list'] = $this->getList();
|
||||
|
||||
$data['filter_keyword'] = $filter_keyword;
|
||||
|
||||
$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('cms/antispam', $data));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function list(): void {
|
||||
$this->load->language('cms/antispam');
|
||||
|
||||
$this->response->setOutput($this->getList());
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
protected function getList(): string {
|
||||
if (isset($this->request->get['filter_keyword'])) {
|
||||
$filter_keyword = (string)$this->request->get['filter_keyword'];
|
||||
} else {
|
||||
$filter_keyword = '';
|
||||
}
|
||||
|
||||
if (isset($this->request->get['sort'])) {
|
||||
$sort = (string)$this->request->get['sort'];
|
||||
} else {
|
||||
$sort = 'keyword';
|
||||
}
|
||||
|
||||
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['filter_keyword'])) {
|
||||
$url .= '&filter_keyword=' . urlencode(html_entity_decode($this->request->get['filter_keyword'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
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('cms/antispam.list', 'user_token=' . $this->session->data['user_token'] . $url);
|
||||
|
||||
$data['antispams'] = [];
|
||||
|
||||
$filter_data = [
|
||||
'filter_keyword' => $filter_keyword,
|
||||
'sort' => $sort,
|
||||
'order' => $order,
|
||||
'start' => ($page - 1) * $this->config->get('config_pagination_admin'),
|
||||
'limit' => $this->config->get('config_pagination_admin')
|
||||
];
|
||||
|
||||
$this->load->model('cms/antispam');
|
||||
|
||||
$antispam_total = $this->model_cms_antispam->getTotalAntispams($filter_data);
|
||||
|
||||
$results = $this->model_cms_antispam->getAntispams($filter_data);
|
||||
|
||||
foreach ($results as $result) {
|
||||
$data['antispams'][] = [
|
||||
'antispam_id' => $result['antispam_id'],
|
||||
'keyword' => $result['keyword'],
|
||||
'edit' => $this->url->link('cms/antispam.form', 'user_token=' . $this->session->data['user_token'] . '&antispam_id=' . $result['antispam_id'] . $url)
|
||||
];
|
||||
}
|
||||
|
||||
$url = '';
|
||||
|
||||
if (isset($this->request->get['filter_keyword'])) {
|
||||
$url .= '&filter_keyword=' . urlencode(html_entity_decode($this->request->get['filter_keyword'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if ($order == 'ASC') {
|
||||
$url .= '&order=DESC';
|
||||
} else {
|
||||
$url .= '&order=ASC';
|
||||
}
|
||||
|
||||
$data['sort_keyword'] = $this->url->link('cms/antispam.list', 'user_token=' . $this->session->data['user_token'] . '&sort=keyword' . $url);
|
||||
|
||||
$url = '';
|
||||
|
||||
if (isset($this->request->get['filter_keyword'])) {
|
||||
$url .= '&filter_keyword=' . urlencode(html_entity_decode($this->request->get['filter_keyword'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
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' => $antispam_total,
|
||||
'page' => $page,
|
||||
'limit' => $this->config->get('config_pagination_admin'),
|
||||
'url' => $this->url->link('cms/antispam.list', 'user_token=' . $this->session->data['user_token'] . $url . '&page={page}')
|
||||
]);
|
||||
|
||||
$data['results'] = sprintf($this->language->get('text_pagination'), ($antispam_total) ? (($page - 1) * $this->config->get('config_pagination_admin')) + 1 : 0, ((($page - 1) * $this->config->get('config_pagination_admin')) > ($antispam_total - $this->config->get('config_pagination_admin'))) ? $antispam_total : ((($page - 1) * $this->config->get('config_pagination_admin')) + $this->config->get('config_pagination_admin')), $antispam_total, ceil($antispam_total / $this->config->get('config_pagination_admin')));
|
||||
|
||||
$data['sort'] = $sort;
|
||||
$data['order'] = $order;
|
||||
|
||||
return $this->load->view('cms/antispam_list', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function form(): void {
|
||||
$this->load->language('cms/antispam');
|
||||
|
||||
$this->document->setTitle($this->language->get('heading_title'));
|
||||
|
||||
$data['text_form'] = !isset($this->request->get['antispam_id']) ? $this->language->get('text_add') : $this->language->get('text_edit');
|
||||
|
||||
$url = '';
|
||||
|
||||
if (isset($this->request->get['filter_keyword'])) {
|
||||
$url .= '&filter_keyword=' . urlencode(html_entity_decode($this->request->get['filter_keyword'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
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('cms/antispam', 'user_token=' . $this->session->data['user_token'] . $url)
|
||||
];
|
||||
|
||||
$data['save'] = $this->url->link('cms/antispam.save', 'user_token=' . $this->session->data['user_token']);
|
||||
$data['back'] = $this->url->link('cms/antispam', 'user_token=' . $this->session->data['user_token'] . $url);
|
||||
|
||||
if (isset($this->request->get['antispam_id'])) {
|
||||
$this->load->model('cms/antispam');
|
||||
|
||||
$antispam_info = $this->model_cms_antispam->getAntispam($this->request->get['antispam_id']);
|
||||
}
|
||||
|
||||
if (isset($this->request->get['antispam_id'])) {
|
||||
$data['antispam_id'] = (int)$this->request->get['antispam_id'];
|
||||
} else {
|
||||
$data['antispam_id'] = 0;
|
||||
}
|
||||
|
||||
if (!empty($antispam_info)) {
|
||||
$data['keyword'] = $antispam_info['keyword'];
|
||||
} else {
|
||||
$data['keyword'] = '';
|
||||
}
|
||||
|
||||
$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('cms/antispam_form', $data));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function save(): void {
|
||||
$this->load->language('cms/antispam');
|
||||
|
||||
$json = [];
|
||||
|
||||
if (!$this->user->hasPermission('modify', 'cms/antispam')) {
|
||||
$json['error']['warning'] = $this->language->get('error_permission');
|
||||
}
|
||||
|
||||
if ((oc_strlen($this->request->post['keyword']) < 1) || (oc_strlen($this->request->post['keyword']) > 64)) {
|
||||
$json['error']['keyword'] = $this->language->get('error_keyword');
|
||||
}
|
||||
|
||||
if (!$json) {
|
||||
$this->load->model('cms/antispam');
|
||||
|
||||
if (!$this->request->post['antispam_id']) {
|
||||
$json['antispam_id'] = $this->model_cms_antispam->addAntispam($this->request->post);
|
||||
} else {
|
||||
$this->model_cms_antispam->editAntispam($this->request->post['antispam_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('cms/antispam');
|
||||
|
||||
$json = [];
|
||||
|
||||
if (isset($this->request->post['selected'])) {
|
||||
$selected = $this->request->post['selected'];
|
||||
} else {
|
||||
$selected = [];
|
||||
}
|
||||
|
||||
if (!$this->user->hasPermission('modify', 'cms/antispam')) {
|
||||
$json['error'] = $this->language->get('error_permission');
|
||||
}
|
||||
|
||||
if (!$json) {
|
||||
$this->load->model('cms/antispam');
|
||||
|
||||
foreach ($selected as $antispam_id) {
|
||||
$this->model_cms_antispam->deleteAntispam($antispam_id);
|
||||
}
|
||||
|
||||
$json['success'] = $this->language->get('text_success');
|
||||
}
|
||||
|
||||
$this->response->addHeader('Content-Type: application/json');
|
||||
$this->response->setOutput(json_encode($json));
|
||||
}
|
||||
}
|
431
admininistrator/controller/cms/article.php
Normal file
431
admininistrator/controller/cms/article.php
Normal file
@ -0,0 +1,431 @@
|
||||
<?php
|
||||
namespace Opencart\Admin\Controller\Cms;
|
||||
/**
|
||||
* Class Article
|
||||
*
|
||||
* @package Opencart\Admin\Controller\Cms
|
||||
*/
|
||||
class Article extends \Opencart\System\Engine\Controller {
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function index(): void {
|
||||
$this->load->language('cms/article');
|
||||
|
||||
$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('cms/article', 'user_token=' . $this->session->data['user_token'] . $url)
|
||||
];
|
||||
|
||||
$data['add'] = $this->url->link('cms/article.form', 'user_token=' . $this->session->data['user_token'] . $url);
|
||||
$data['delete'] = $this->url->link('cms/article.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('cms/article', $data));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function list(): void {
|
||||
$this->load->language('cms/article');
|
||||
|
||||
$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 = 'date_added';
|
||||
}
|
||||
|
||||
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('cms/article.list', 'user_token=' . $this->session->data['user_token'] . $url);
|
||||
|
||||
$data['articles'] = [];
|
||||
|
||||
$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('cms/article');
|
||||
|
||||
$article_total = $this->model_cms_article->getTotalArticles();
|
||||
|
||||
$results = $this->model_cms_article->getArticles($filter_data);
|
||||
|
||||
foreach ($results as $result) {
|
||||
$data['articles'][] = [
|
||||
'article_id' => $result['article_id'],
|
||||
'name' => $result['name'],
|
||||
'author' => $result['author'],
|
||||
'status' => $result['status'],
|
||||
'date_added' => date($this->language->get('date_format_short'), strtotime($result['date_added'])),
|
||||
'edit' => $this->url->link('cms/article.form', 'user_token=' . $this->session->data['user_token'] . '&article_id=' . $result['article_id'] . $url)
|
||||
];
|
||||
}
|
||||
|
||||
$url = '';
|
||||
|
||||
if ($order == 'ASC') {
|
||||
$url .= '&order=DESC';
|
||||
} else {
|
||||
$url .= '&order=ASC';
|
||||
}
|
||||
|
||||
$data['sort_name'] = $this->url->link('cms/article.list', 'user_token=' . $this->session->data['user_token'] . '&sort=ad.name' . $url);
|
||||
$data['sort_author'] = $this->url->link('cms/article.list', 'user_token=' . $this->session->data['user_token'] . '&sort=a.author' . $url);
|
||||
$data['sort_date_added'] = $this->url->link('cms/article.list', 'user_token=' . $this->session->data['user_token'] . '&sort=a.date_added' . $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' => $article_total,
|
||||
'page' => $page,
|
||||
'limit' => $this->config->get('config_pagination_admin'),
|
||||
'url' => $this->url->link('cms/article.list', 'user_token=' . $this->session->data['user_token'] . $url . '&page={page}')
|
||||
]);
|
||||
|
||||
$data['results'] = sprintf($this->language->get('text_pagination'), ($article_total) ? (($page - 1) * $this->config->get('config_pagination_admin')) + 1 : 0, ((($page - 1) * $this->config->get('config_pagination_admin')) > ($article_total - $this->config->get('config_pagination_admin'))) ? $article_total : ((($page - 1) * $this->config->get('config_pagination_admin')) + $this->config->get('config_pagination_admin')), $article_total, ceil($article_total / $this->config->get('config_pagination_admin')));
|
||||
|
||||
$data['sort'] = $sort;
|
||||
$data['order'] = $order;
|
||||
|
||||
return $this->load->view('cms/article_list', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function form(): void {
|
||||
$this->load->language('cms/article');
|
||||
|
||||
$this->document->setTitle($this->language->get('heading_title'));
|
||||
|
||||
$this->document->addScript('view/javascript/ckeditor/ckeditor.js');
|
||||
$this->document->addScript('view/javascript/ckeditor/adapters/jquery.js');
|
||||
|
||||
$data['text_form'] = !isset($this->request->get['article_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('cms/article', 'user_token=' . $this->session->data['user_token'] . $url)
|
||||
];
|
||||
|
||||
$data['save'] = $this->url->link('cms/article.save', 'user_token=' . $this->session->data['user_token']);
|
||||
$data['back'] = $this->url->link('cms/article', 'user_token=' . $this->session->data['user_token'] . $url);
|
||||
|
||||
if (isset($this->request->get['article_id'])) {
|
||||
$this->load->model('cms/article');
|
||||
|
||||
$article_info = $this->model_cms_article->getArticle($this->request->get['article_id']);
|
||||
}
|
||||
|
||||
if (isset($this->request->get['article_id'])) {
|
||||
$data['article_id'] = (int)$this->request->get['article_id'];
|
||||
} else {
|
||||
$data['article_id'] = 0;
|
||||
}
|
||||
|
||||
$this->load->model('localisation/language');
|
||||
|
||||
$data['languages'] = $this->model_localisation_language->getLanguages();
|
||||
|
||||
$this->load->model('tool/image');
|
||||
|
||||
$data['placeholder'] = $this->model_tool_image->resize('no_image.png', 100, 100);
|
||||
|
||||
$data['article_description'] = [];
|
||||
|
||||
if (isset($this->request->get['article_id'])) {
|
||||
$results = $this->model_cms_article->getDescriptions($this->request->get['article_id']);
|
||||
|
||||
foreach ($results as $key => $result) {
|
||||
$data['article_description'][$key] = $result;
|
||||
|
||||
if (is_file(DIR_IMAGE . html_entity_decode($result['image'], ENT_QUOTES, 'UTF-8'))) {
|
||||
$data['article_description'][$key]['thumb'] = $this->model_tool_image->resize(html_entity_decode($result['image'], ENT_QUOTES, 'UTF-8'), 100, 100);
|
||||
} else {
|
||||
$data['article_description'][$key]['thumb'] = $data['placeholder'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($article_info)) {
|
||||
$data['author'] = $article_info['author'];
|
||||
} else {
|
||||
$data['author'] = '';
|
||||
}
|
||||
|
||||
$this->load->model('cms/topic');
|
||||
|
||||
$data['topics'] = $this->model_cms_topic->getTopics();
|
||||
|
||||
if (!empty($article_info)) {
|
||||
$data['topic_id'] = $article_info['topic_id'];
|
||||
} else {
|
||||
$data['topic_id'] = 0;
|
||||
}
|
||||
|
||||
$data['stores'] = [];
|
||||
|
||||
$data['stores'][] = [
|
||||
'store_id' => 0,
|
||||
'name' => $this->language->get('text_default')
|
||||
];
|
||||
|
||||
$this->load->model('setting/store');
|
||||
|
||||
$stores = $this->model_setting_store->getStores();
|
||||
|
||||
foreach ($stores as $store) {
|
||||
$data['stores'][] = [
|
||||
'store_id' => $store['store_id'],
|
||||
'name' => $store['name']
|
||||
];
|
||||
}
|
||||
|
||||
if (isset($this->request->get['article_id'])) {
|
||||
$data['article_store'] = $this->model_cms_article->getStores($this->request->get['article_id']);
|
||||
} else {
|
||||
$data['article_store'] = [0];
|
||||
}
|
||||
|
||||
if (!empty($article_info)) {
|
||||
$data['image'] = $article_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($article_info)) {
|
||||
$data['status'] = $article_info['status'];
|
||||
} else {
|
||||
$data['status'] = true;
|
||||
}
|
||||
|
||||
if (isset($this->request->get['article_id'])) {
|
||||
$data['article_seo_url'] = $this->model_cms_article->getSeoUrls($this->request->get['article_id']);
|
||||
} else {
|
||||
$data['article_seo_url'] = [];
|
||||
}
|
||||
|
||||
$this->load->model('design/layout');
|
||||
|
||||
$data['layouts'] = $this->model_design_layout->getLayouts();
|
||||
|
||||
if (isset($this->request->get['article_id'])) {
|
||||
$data['article_layout'] = $this->model_cms_article->getLayouts($this->request->get['article_id']);
|
||||
} else {
|
||||
$data['article_layout'] = [];
|
||||
}
|
||||
|
||||
$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('cms/article_form', $data));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function save(): void {
|
||||
$this->load->language('cms/article');
|
||||
|
||||
$json = [];
|
||||
|
||||
if (!$this->user->hasPermission('modify', 'cms/article')) {
|
||||
$json['error']['warning'] = $this->language->get('error_permission');
|
||||
}
|
||||
|
||||
foreach ($this->request->post['article_description'] as $language_id => $value) {
|
||||
if ((oc_strlen(trim($value['name'])) < 1) || (oc_strlen($value['name']) > 255)) {
|
||||
$json['error']['name_' . $language_id] = $this->language->get('error_name');
|
||||
}
|
||||
|
||||
if ((oc_strlen(trim($value['meta_title'])) < 1) || (oc_strlen($value['meta_title']) > 255)) {
|
||||
$json['error']['meta_title_' . $language_id] = $this->language->get('error_meta_title');
|
||||
}
|
||||
}
|
||||
|
||||
if ((oc_strlen($this->request->post['author']) < 3) || (oc_strlen($this->request->post['author']) > 64)) {
|
||||
$json['error']['author'] = $this->language->get('error_author');
|
||||
}
|
||||
|
||||
if ($this->request->post['article_seo_url']) {
|
||||
$this->load->model('design/seo_url');
|
||||
|
||||
foreach ($this->request->post['article_seo_url'] as $store_id => $language) {
|
||||
foreach ($language as $language_id => $keyword) {
|
||||
if ((oc_strlen(trim($keyword)) < 1) || (oc_strlen($keyword) > 64)) {
|
||||
$json['error']['keyword_' . $store_id . '_' . $language_id] = $this->language->get('error_keyword');
|
||||
}
|
||||
|
||||
if (preg_match('/[^a-zA-Z0-9\/_-]|[\p{Cyrillic}]+/u', $keyword)) {
|
||||
$json['error']['keyword_' . $store_id . '_' . $language_id] = $this->language->get('error_keyword_character');
|
||||
}
|
||||
|
||||
$seo_url_info = $this->model_design_seo_url->getSeoUrlByKeyword($keyword, $store_id);
|
||||
|
||||
if ($seo_url_info && (!isset($this->request->post['article_id']) || $seo_url_info['key'] != 'article_id' || $seo_url_info['value'] != (int)$this->request->post['article_id'])) {
|
||||
$json['error']['keyword_' . $store_id . '_' . $language_id] = $this->language->get('error_keyword_exists');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($json['error']) && !isset($json['error']['warning'])) {
|
||||
$json['error']['warning'] = $this->language->get('error_warning');
|
||||
}
|
||||
|
||||
if (!$json) {
|
||||
$this->load->model('cms/article');
|
||||
|
||||
if (!$this->request->post['article_id']) {
|
||||
$json['article_id'] = $this->model_cms_article->addArticle($this->request->post);
|
||||
} else {
|
||||
$this->model_cms_article->editArticle($this->request->post['article_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('cms/article');
|
||||
|
||||
$json = [];
|
||||
|
||||
if (isset($this->request->post['selected'])) {
|
||||
$selected = $this->request->post['selected'];
|
||||
} else {
|
||||
$selected = [];
|
||||
}
|
||||
|
||||
if (!$this->user->hasPermission('modify', 'cms/article')) {
|
||||
$json['error'] = $this->language->get('error_permission');
|
||||
}
|
||||
|
||||
if (!$json) {
|
||||
$this->load->model('cms/article');
|
||||
|
||||
foreach ($selected as $article_id) {
|
||||
$this->model_cms_article->deleteArticle($article_id);
|
||||
}
|
||||
|
||||
$json['success'] = $this->language->get('text_success');
|
||||
}
|
||||
|
||||
$this->response->addHeader('Content-Type: application/json');
|
||||
$this->response->setOutput(json_encode($json));
|
||||
}
|
||||
}
|
396
admininistrator/controller/cms/comment.php
Normal file
396
admininistrator/controller/cms/comment.php
Normal file
@ -0,0 +1,396 @@
|
||||
<?php
|
||||
namespace Opencart\Admin\Controller\Cms;
|
||||
/**
|
||||
* Class Comments
|
||||
*
|
||||
* @package Opencart\Admin\Controller\Cms
|
||||
*/
|
||||
class Comment extends \Opencart\System\Engine\Controller {
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
|
||||
public function index() {
|
||||
$this->load->language('cms/comment');
|
||||
|
||||
$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/dashboard', 'user_token=' . $this->session->data['user_token'])
|
||||
);
|
||||
|
||||
$data['breadcrumbs'][] = array(
|
||||
'text' => $this->language->get('heading_title'),
|
||||
'href' => $this->url->link('cms/comment', '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('cms/comment', $data));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function list(): void {
|
||||
$this->load->language('cms/comment');
|
||||
|
||||
$this->response->setOutput($this->getList());
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getList(): string {
|
||||
if (isset($this->request->get['filter_keyword'])) {
|
||||
$filter_keyword = $this->request->get['filter_keyword'];
|
||||
} else {
|
||||
$filter_keyword = '';
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_title'])) {
|
||||
$filter_title = $this->request->get['filter_title'];
|
||||
} else {
|
||||
$filter_title = '';
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_customer'])) {
|
||||
$filter_customer = $this->request->get['filter_customer'];
|
||||
} else {
|
||||
$filter_customer = '';
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_status'])) {
|
||||
$filter_status = $this->request->get['filter_status'];
|
||||
} else {
|
||||
$filter_status = 0;
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_date_added'])) {
|
||||
$filter_date_added = $this->request->get['filter_date_added'];
|
||||
} else {
|
||||
$filter_date_added = '';
|
||||
}
|
||||
|
||||
if (isset($this->request->get['page'])) {
|
||||
$page = $this->request->get['page'];
|
||||
} else {
|
||||
$page = 1;
|
||||
}
|
||||
|
||||
$url = '';
|
||||
|
||||
if (isset($this->request->get['filter_keyword'])) {
|
||||
$url .= '&filter_keyword=' . urlencode(html_entity_decode($this->request->get['filter_keyword'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_title'])) {
|
||||
$url .= '&filter_title=' . urlencode(html_entity_decode($this->request->get['filter_title'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_customer'])) {
|
||||
$url .= '&filter_customer=' . urlencode(html_entity_decode($this->request->get['filter_customer'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_status'])) {
|
||||
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_date_added'])) {
|
||||
$url .= '&filter_date_added=' . $this->request->get['filter_date_added'];
|
||||
}
|
||||
|
||||
if (isset($this->request->get['page'])) {
|
||||
$url .= '&page=' . $this->request->get['page'];
|
||||
}
|
||||
|
||||
$data['comments'] = array();
|
||||
|
||||
$filter_data = array(
|
||||
'filter_keyword' => $filter_keyword,
|
||||
'filter_title' => $filter_title,
|
||||
'filter_customer' => $filter_customer,
|
||||
'filter_status' => $filter_status,
|
||||
'filter_date_added' => $filter_date_added,
|
||||
'start' => ($page - 1) * 10,
|
||||
'limit' => 10
|
||||
);
|
||||
|
||||
$this->load->model('cms/article');
|
||||
|
||||
$comment_total = $this->model_cms_article->getTotalComments($filter_data);
|
||||
|
||||
$results = $this->model_cms_article->getComments($filter_data);
|
||||
|
||||
foreach ($results as $result) {
|
||||
if (!$result['status']) {
|
||||
$approve = $this->url->link('cms/comment.approve', 'user_token=' . $this->session->data['user_token'] . '&comment_id=' . $result['comment_id'] . $url);
|
||||
} else {
|
||||
$approve = '';
|
||||
}
|
||||
|
||||
$data['comments'][] = array(
|
||||
'article' => $result['article'],
|
||||
'article_edit' => $this->url->link('cms/article.edit', 'user_token=' . $this->session->data['user_token'] . '&article_id=' . $result['article_id']),
|
||||
'customer' => $result['customer'],
|
||||
'customer_edit' => $this->url->link('customer/customer.edit', 'user_token=' . $this->session->data['user_token'] . '&customer_id=' . $result['customer_id']),
|
||||
'comment' => nl2br($result['comment']),
|
||||
'date_added' => date('d/m/Y', strtotime($result['date_added'])),
|
||||
'approve' => $approve,
|
||||
'spam' => $this->url->link('cms/comment.spam', 'user_token=' . $this->session->data['user_token'] . '&comment_id=' . $result['comment_id'] . $url),
|
||||
'delete' => $this->url->link('cms/comment.delete', 'user_token=' . $this->session->data['user_token'] . '&comment_id=' . $result['comment_id'] . $url)
|
||||
);
|
||||
}
|
||||
|
||||
$url = '';
|
||||
|
||||
if (isset($this->request->get['filter_keyword'])) {
|
||||
$url .= '&filter_keyword=' . urlencode(html_entity_decode($this->request->get['filter_keyword'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_title'])) {
|
||||
$url .= '&filter_title=' . urlencode(html_entity_decode($this->request->get['filter_title'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_customer'])) {
|
||||
$url .= '&filter_customer=' . urlencode(html_entity_decode($this->request->get['filter_customer'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_status'])) {
|
||||
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_date_added'])) {
|
||||
$url .= '&filter_date_added=' . $this->request->get['filter_date_added'];
|
||||
}
|
||||
|
||||
$data['pagination'] = $this->load->controller('common/pagination', array(
|
||||
'total' => $comment_total,
|
||||
'page' => $page,
|
||||
'limit' => 10,
|
||||
'url' => $this->url->link('cms/comment.list', 'user_token=' . $this->session->data['user_token'] . $url . '&page={page}')
|
||||
));
|
||||
|
||||
$data['results'] = sprintf($this->language->get('text_pagination'), ($comment_total) ? (($page - 1) * $this->config->get('config_pagination_admin')) + 1 : 0, ((($page - 1) * $this->config->get('config_pagination_admin')) > ($comment_total - $this->config->get('config_pagination_admin'))) ? $comment_total : ((($page - 1) * $this->config->get('config_pagination_admin')) + $this->config->get('config_pagination_admin')), $comment_total, ceil($comment_total / $this->config->get('config_pagination_admin')));
|
||||
|
||||
return $this->load->view('cms/comment_list', $data);
|
||||
}
|
||||
|
||||
public function approve() {
|
||||
$this->load->language('cms/comment');
|
||||
|
||||
$json = array();
|
||||
|
||||
if (isset($this->request->get['article_comment_id'])) {
|
||||
$article_comment_id = $this->request->get['article_comment_id'];
|
||||
} else {
|
||||
$article_comment_id = 0;
|
||||
}
|
||||
|
||||
if (!$this->user->hasPermission('modify', 'cms/comment')) {
|
||||
$json['error'] = $this->language->get('error_permission');
|
||||
}
|
||||
|
||||
$this->load->model('cms/article');
|
||||
|
||||
$comment_info = $this->model_cms_article->getComment($article_comment_id);
|
||||
|
||||
if (!$comment_info) {
|
||||
$json['error'] = $this->language->get('error_comment');
|
||||
}
|
||||
|
||||
if (!$json) {
|
||||
// Approve Commentor
|
||||
$this->load->model('customer/customer');
|
||||
|
||||
$this->model_customer_customer->editCommentor($comment_info['customer_id'], 1);
|
||||
|
||||
// Approve all past comments
|
||||
$filter_data = array(
|
||||
'filter_customer_id' => $comment_info['customer_id'],
|
||||
'filter_status' => 0
|
||||
);
|
||||
|
||||
$results = $this->model_cms_comment->getComments($filter_data);
|
||||
|
||||
foreach ($results as $result) {
|
||||
$this->model_cms_comment->editStatus($result['customer_id'], 1);
|
||||
}
|
||||
|
||||
$json['success'] = $this->language->get('text_success');
|
||||
|
||||
$url = '';
|
||||
|
||||
if (isset($this->request->get['filter_keyword'])) {
|
||||
$url .= '&filter_keyword=' . urlencode(html_entity_decode($this->request->get['filter_keyword'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_title'])) {
|
||||
$url .= '&filter_title=' . urlencode(html_entity_decode($this->request->get['filter_title'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_customer'])) {
|
||||
$url .= '&filter_customer=' . urlencode(html_entity_decode($this->request->get['filter_customer'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_status'])) {
|
||||
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_date_added'])) {
|
||||
$url .= '&filter_date_added=' . $this->request->get['filter_date_added'];
|
||||
}
|
||||
|
||||
if (isset($this->request->get['page'])) {
|
||||
$url .= '&page=' . $this->request->get['page'];
|
||||
}
|
||||
|
||||
$json['redirect'] = $this->url->link('cms/comment.comment', 'user_token=' . $this->session->data['user_token'] . $url, true);
|
||||
}
|
||||
|
||||
$this->response->addHeader('Content-Type: application/json');
|
||||
$this->response->setOutput(json_encode($json));
|
||||
}
|
||||
|
||||
public function spam() {
|
||||
$this->load->language('cms/comment');
|
||||
|
||||
$json = array();
|
||||
|
||||
if (isset($this->request->get['comment_id'])) {
|
||||
$comment_id = $this->request->get['comment_id'];
|
||||
} else {
|
||||
$comment_id = 0;
|
||||
}
|
||||
|
||||
if (!$this->user->hasPermission('modify', 'cms/comment')) {
|
||||
$json['error'] = $this->language->get('error_permission');
|
||||
}
|
||||
|
||||
$this->load->model('cms/article');
|
||||
|
||||
$comment_info = $this->model_cms_article->getComment($comment_id);
|
||||
|
||||
if (!$comment_info) {
|
||||
$json['error'] = $this->language->get('error_comment');
|
||||
}
|
||||
|
||||
if (!$json) {
|
||||
$this->load->model('customer/customer');
|
||||
|
||||
$this->model_customer_customer->editCommentor($comment_info['customer_id'], 0);
|
||||
$this->model_customer_customer->editStatus($comment_info['customer_id'], 0);
|
||||
$this->model_customer_customer->addHistory($comment_info['customer_id'], 'SPAMMER!!!');
|
||||
|
||||
// Delete all customer comments
|
||||
$results = $this->model_cms_comment->getComments(array('filter_customer_id' => $comment_info['customer_id']));
|
||||
|
||||
foreach ($results as $result) {
|
||||
$this->model_cms_comment->deleteCommentsByCustomerId($result['comment_id']);
|
||||
}
|
||||
|
||||
$json['success'] = $this->language->get('text_success');
|
||||
|
||||
$url = '';
|
||||
|
||||
if (isset($this->request->get['filter_keyword'])) {
|
||||
$url .= '&filter_keyword=' . urlencode(html_entity_decode($this->request->get['filter_keyword'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_title'])) {
|
||||
$url .= '&filter_title=' . urlencode(html_entity_decode($this->request->get['filter_title'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_customer'])) {
|
||||
$url .= '&filter_customer=' . urlencode(html_entity_decode($this->request->get['filter_customer'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_status'])) {
|
||||
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_date_added'])) {
|
||||
$url .= '&filter_date_added=' . $this->request->get['filter_date_added'];
|
||||
}
|
||||
|
||||
if (isset($this->request->get['page'])) {
|
||||
$url .= '&page=' . $this->request->get['page'];
|
||||
}
|
||||
|
||||
$json['redirect'] = $this->url->link('cms/comment/comment', 'user_token=' . $this->session->data['user_token'] . $url, true);
|
||||
}
|
||||
|
||||
$this->response->addHeader('Content-Type: application/json');
|
||||
$this->response->setOutput(json_encode($json));
|
||||
}
|
||||
|
||||
public function delete() {
|
||||
$this->load->language('cms/comment');
|
||||
|
||||
$json = array();
|
||||
|
||||
if (isset($this->request->get['comment_id'])) {
|
||||
$comment_id = $this->request->get['comment_id'];
|
||||
} else {
|
||||
$comment_id = 0;
|
||||
}
|
||||
|
||||
if (!$this->user->hasPermission('modify', 'cms/comment')) {
|
||||
$json['error'] = $this->language->get('error_permission');
|
||||
}
|
||||
|
||||
$this->load->model('cms/article');
|
||||
|
||||
$comment_info = $this->model_cms_article->getComment($comment_id);
|
||||
|
||||
if (!$comment_info) {
|
||||
$json['error'] = $this->language->get('error_comment');
|
||||
}
|
||||
|
||||
if (!$json) {
|
||||
$this->model_cms_article->deleteComment($comment_id);
|
||||
|
||||
$json['success'] = $this->language->get('error_success');
|
||||
|
||||
$url = '';
|
||||
|
||||
if (isset($this->request->get['filter_keyword'])) {
|
||||
$url .= '&filter_keyword=' . urlencode(html_entity_decode($this->request->get['filter_keyword'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_title'])) {
|
||||
$url .= '&filter_title=' . urlencode(html_entity_decode($this->request->get['filter_title'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_customer'])) {
|
||||
$url .= '&filter_customer=' . urlencode(html_entity_decode($this->request->get['filter_customer'], ENT_QUOTES, 'UTF-8'));
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_status'])) {
|
||||
$url .= '&filter_status=' . $this->request->get['filter_status'];
|
||||
}
|
||||
|
||||
if (isset($this->request->get['filter_date_added'])) {
|
||||
$url .= '&filter_date_added=' . $this->request->get['filter_date_added'];
|
||||
}
|
||||
|
||||
if (isset($this->request->get['page'])) {
|
||||
$url .= '&page=' . $this->request->get['page'];
|
||||
}
|
||||
|
||||
$json['redirect'] = $this->url->link('cms/comment.comment', 'user_token=' . $this->session->data['user_token'] . $url, true);
|
||||
}
|
||||
|
||||
$this->response->addHeader('Content-Type: application/json');
|
||||
$this->response->setOutput(json_encode($json));
|
||||
}
|
||||
}
|
389
admininistrator/controller/cms/topic.php
Normal file
389
admininistrator/controller/cms/topic.php
Normal file
@ -0,0 +1,389 @@
|
||||
<?php
|
||||
namespace Opencart\Admin\Controller\Cms;
|
||||
/**
|
||||
* Class Topic
|
||||
*
|
||||
* @package Opencart\Admin\Controller\Cms
|
||||
*/
|
||||
class Topic extends \Opencart\System\Engine\Controller {
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function index(): void {
|
||||
$this->load->language('cms/topic');
|
||||
|
||||
$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('cms/topic', 'user_token=' . $this->session->data['user_token'] . $url)
|
||||
];
|
||||
|
||||
$data['add'] = $this->url->link('cms/topic.form', 'user_token=' . $this->session->data['user_token'] . $url);
|
||||
$data['delete'] = $this->url->link('cms/topic.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('cms/topic', $data));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function list(): void {
|
||||
$this->load->language('cms/topic');
|
||||
|
||||
$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 = 't.sort_order';
|
||||
}
|
||||
|
||||
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('cms/topic.list', 'user_token=' . $this->session->data['user_token'] . $url);
|
||||
|
||||
$data['topics'] = [];
|
||||
|
||||
$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('cms/topic');
|
||||
|
||||
$topic_total = $this->model_cms_topic->getTotalTopics();
|
||||
|
||||
$results = $this->model_cms_topic->getTopics($filter_data);
|
||||
|
||||
foreach ($results as $result) {
|
||||
$data['topics'][] = [
|
||||
'topic_id' => $result['topic_id'],
|
||||
'name' => $result['name'],
|
||||
'status' => $result['status'],
|
||||
'sort_order' => $result['sort_order'],
|
||||
'edit' => $this->url->link('cms/topic.form', 'user_token=' . $this->session->data['user_token'] . '&topic_id=' . $result['topic_id'] . $url)
|
||||
];
|
||||
}
|
||||
|
||||
$url = '';
|
||||
|
||||
if ($order == 'ASC') {
|
||||
$url .= '&order=DESC';
|
||||
} else {
|
||||
$url .= '&order=ASC';
|
||||
}
|
||||
|
||||
$data['sort_name'] = $this->url->link('cms/topic.list', 'user_token=' . $this->session->data['user_token'] . '&sort=bcd.name' . $url);
|
||||
$data['sort_sort_order'] = $this->url->link('cms/topic.list', 'user_token=' . $this->session->data['user_token'] . '&sort=bc.sort_order' . $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' => $topic_total,
|
||||
'page' => $page,
|
||||
'limit' => $this->config->get('config_pagination_admin'),
|
||||
'url' => $this->url->link('cms/topic.list', 'user_token=' . $this->session->data['user_token'] . $url . '&page={page}')
|
||||
]);
|
||||
|
||||
$data['results'] = sprintf($this->language->get('text_pagination'), ($topic_total) ? (($page - 1) * $this->config->get('config_pagination_admin')) + 1 : 0, ((($page - 1) * $this->config->get('config_pagination_admin')) > ($topic_total - $this->config->get('config_pagination_admin'))) ? $topic_total : ((($page - 1) * $this->config->get('config_pagination_admin')) + $this->config->get('config_pagination_admin')), $topic_total, ceil($topic_total / $this->config->get('config_pagination_admin')));
|
||||
|
||||
$data['sort'] = $sort;
|
||||
$data['order'] = $order;
|
||||
|
||||
return $this->load->view('cms/topic_list', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function form(): void {
|
||||
$this->load->language('cms/topic');
|
||||
|
||||
$this->document->setTitle($this->language->get('heading_title'));
|
||||
|
||||
$this->document->addScript('view/javascript/ckeditor/ckeditor.js');
|
||||
$this->document->addScript('view/javascript/ckeditor/adapters/jquery.js');
|
||||
|
||||
$data['text_form'] = !isset($this->request->get['topic_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('cms/topic', 'user_token=' . $this->session->data['user_token'] . $url)
|
||||
];
|
||||
|
||||
$data['save'] = $this->url->link('cms/topic.save', 'user_token=' . $this->session->data['user_token']);
|
||||
$data['back'] = $this->url->link('cms/topic', 'user_token=' . $this->session->data['user_token'] . $url);
|
||||
|
||||
if (isset($this->request->get['topic_id'])) {
|
||||
$this->load->model('cms/topic');
|
||||
|
||||
$topic_info = $this->model_cms_topic->getTopic($this->request->get['topic_id']);
|
||||
}
|
||||
|
||||
if (isset($this->request->get['topic_id'])) {
|
||||
$data['topic_id'] = (int)$this->request->get['topic_id'];
|
||||
} else {
|
||||
$data['topic_id'] = 0;
|
||||
}
|
||||
|
||||
$this->load->model('localisation/language');
|
||||
|
||||
$data['languages'] = $this->model_localisation_language->getLanguages();
|
||||
|
||||
$this->load->model('tool/image');
|
||||
|
||||
$data['placeholder'] = $this->model_tool_image->resize('no_image.png', 100, 100);
|
||||
|
||||
$data['topic_description'] = [];
|
||||
|
||||
if (isset($this->request->get['topic_id'])) {
|
||||
$results = $this->model_cms_topic->getDescriptions($this->request->get['topic_id']);
|
||||
|
||||
foreach ($results as $key => $result) {
|
||||
$data['topic_description'][$key] = $result;
|
||||
|
||||
if (is_file(DIR_IMAGE . html_entity_decode($result['image'], ENT_QUOTES, 'UTF-8'))) {
|
||||
$data['topic_description'][$key]['thumb'] = $this->model_tool_image->resize(html_entity_decode($result['image'], ENT_QUOTES, 'UTF-8'), 100, 100);
|
||||
} else {
|
||||
$data['topic_description'][$key]['thumb'] = $data['placeholder'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$data['stores'] = [];
|
||||
|
||||
$data['stores'][] = [
|
||||
'store_id' => 0,
|
||||
'name' => $this->language->get('text_default')
|
||||
];
|
||||
|
||||
$this->load->model('setting/store');
|
||||
|
||||
$stores = $this->model_setting_store->getStores();
|
||||
|
||||
foreach ($stores as $store) {
|
||||
$data['stores'][] = [
|
||||
'store_id' => $store['store_id'],
|
||||
'name' => $store['name']
|
||||
];
|
||||
}
|
||||
|
||||
if (isset($this->request->get['topic_id'])) {
|
||||
$data['topic_store'] = $this->model_cms_topic->getStores($this->request->get['topic_id']);
|
||||
} else {
|
||||
$data['topic_store'] = [0];
|
||||
}
|
||||
|
||||
if (!empty($topic_info)) {
|
||||
$data['sort_order'] = $topic_info['sort_order'];
|
||||
} else {
|
||||
$data['sort_order'] = 0;
|
||||
}
|
||||
|
||||
if (!empty($topic_info)) {
|
||||
$data['status'] = $topic_info['status'];
|
||||
} else {
|
||||
$data['status'] = true;
|
||||
}
|
||||
|
||||
if (isset($this->request->get['topic_id'])) {
|
||||
$data['topic_seo_url'] = $this->model_cms_topic->getSeoUrls($this->request->get['topic_id']);
|
||||
} else {
|
||||
$data['topic_seo_url'] = [];
|
||||
}
|
||||
|
||||
$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('cms/topic_form', $data));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function save(): void {
|
||||
$this->load->language('cms/topic');
|
||||
|
||||
$json = [];
|
||||
|
||||
if (!$this->user->hasPermission('modify', 'cms/topic')) {
|
||||
$json['error']['warning'] = $this->language->get('error_permission');
|
||||
}
|
||||
|
||||
foreach ($this->request->post['topic_description'] as $language_id => $value) {
|
||||
if ((oc_strlen(trim($value['name'])) < 1) || (oc_strlen($value['name']) > 255)) {
|
||||
$json['error']['name_' . $language_id] = $this->language->get('error_name');
|
||||
}
|
||||
|
||||
if ((oc_strlen(trim($value['meta_title'])) < 1) || (oc_strlen($value['meta_title']) > 255)) {
|
||||
$json['error']['meta_title_' . $language_id] = $this->language->get('error_meta_title');
|
||||
}
|
||||
}
|
||||
|
||||
if ($this->request->post['topic_seo_url']) {
|
||||
$this->load->model('design/seo_url');
|
||||
|
||||
foreach ($this->request->post['topic_seo_url'] as $store_id => $language) {
|
||||
foreach ($language as $language_id => $keyword) {
|
||||
if ((oc_strlen(trim($keyword)) < 1) || (oc_strlen($keyword) > 64)) {
|
||||
$json['error']['keyword_' . $store_id . '_' . $language_id] = $this->language->get('error_keyword');
|
||||
}
|
||||
|
||||
if (preg_match('/[^a-zA-Z0-9\/_-]|[\p{Cyrillic}]+/u', $keyword)) {
|
||||
$json['error']['keyword_' . $store_id . '_' . $language_id] = $this->language->get('error_keyword_character');
|
||||
}
|
||||
|
||||
$seo_url_info = $this->model_design_seo_url->getSeoUrlByKeyword($keyword, $store_id);
|
||||
|
||||
if ($seo_url_info && (!isset($this->request->post['topic_id']) || $seo_url_info['key'] != 'topic_id' || $seo_url_info['value'] != (int)$this->request->post['topic_id'])) {
|
||||
$json['error']['keyword_' . $store_id . '_' . $language_id] = $this->language->get('error_keyword_exists');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($json['error']) && !isset($json['error']['warning'])) {
|
||||
$json['error']['warning'] = $this->language->get('error_warning');
|
||||
}
|
||||
|
||||
if (!$json) {
|
||||
$this->load->model('cms/topic');
|
||||
|
||||
if (!$this->request->post['topic_id']) {
|
||||
$json['topic_id'] = $this->model_cms_topic->addTopic($this->request->post);
|
||||
} else {
|
||||
$this->model_cms_topic->editTopic($this->request->post['topic_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('cms/topic');
|
||||
|
||||
$json = [];
|
||||
|
||||
if (isset($this->request->post['selected'])) {
|
||||
$selected = $this->request->post['selected'];
|
||||
} else {
|
||||
$selected = [];
|
||||
}
|
||||
|
||||
if (!$this->user->hasPermission('modify', 'cms/topic')) {
|
||||
$json['error'] = $this->language->get('error_permission');
|
||||
}
|
||||
|
||||
if (!$json) {
|
||||
$this->load->model('cms/topic');
|
||||
|
||||
foreach ($selected as $topic_id) {
|
||||
$this->model_cms_topic->deleteTopic($topic_id);
|
||||
}
|
||||
|
||||
$json['success'] = $this->language->get('text_success');
|
||||
}
|
||||
|
||||
$this->response->addHeader('Content-Type: application/json');
|
||||
$this->response->setOutput(json_encode($json));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user