60 lines
2.1 KiB
PHP
60 lines
2.1 KiB
PHP
<?php
|
|
// * @source See SOURCE.txt for source and other copyright.
|
|
// * @license GNU General Public License version 3; see LICENSE.txt
|
|
|
|
class ControllerAccountNewsletter extends Controller {
|
|
public function index() {
|
|
if (!$this->customer->isLogged()) {
|
|
$this->session->data['redirect'] = $this->url->link('account/newsletter', '', true);
|
|
|
|
$this->response->redirect($this->url->link('account/login', '', true));
|
|
}
|
|
|
|
$this->load->language('account/newsletter');
|
|
|
|
$this->document->setTitle($this->language->get('heading_title'));
|
|
$this->document->setRobots('noindex,follow');
|
|
|
|
if ($this->request->server['REQUEST_METHOD'] == 'POST') {
|
|
$this->load->model('account/customer');
|
|
|
|
$this->model_account_customer->editNewsletter($this->request->post['newsletter']);
|
|
|
|
$this->session->data['success'] = $this->language->get('text_success');
|
|
|
|
$this->response->redirect($this->url->link('account/account', '', true));
|
|
}
|
|
|
|
$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('account/account', '', true)
|
|
);
|
|
|
|
$data['breadcrumbs'][] = array(
|
|
'text' => $this->language->get('text_newsletter'),
|
|
'href' => $this->url->link('account/newsletter', '', true)
|
|
);
|
|
|
|
$data['action'] = $this->url->link('account/newsletter', '', true);
|
|
|
|
$data['newsletter'] = $this->customer->getNewsletter();
|
|
|
|
$data['back'] = $this->url->link('account/account', '', true);
|
|
|
|
$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');
|
|
|
|
$this->response->setOutput($this->load->view('account/newsletter', $data));
|
|
}
|
|
} |