diff options
Diffstat (limited to 'public/catalog/controller/extension/module/account.php')
-rw-r--r-- | public/catalog/controller/extension/module/account.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/public/catalog/controller/extension/module/account.php b/public/catalog/controller/extension/module/account.php new file mode 100644 index 0000000..333b9a1 --- /dev/null +++ b/public/catalog/controller/extension/module/account.php @@ -0,0 +1,26 @@ +<?php +class ControllerExtensionModuleAccount extends Controller { + public function index() { + $this->load->language('extension/module/account'); + + $data['logged'] = $this->customer->isLogged(); + $data['register'] = $this->url->link('account/register', '', true); + $data['login'] = $this->url->link('account/login', '', true); + $data['logout'] = $this->url->link('account/logout', '', true); + $data['forgotten'] = $this->url->link('account/forgotten', '', true); + $data['account'] = $this->url->link('account/account', '', true); + $data['edit'] = $this->url->link('account/edit', '', true); + $data['password'] = $this->url->link('account/password', '', true); + $data['address'] = $this->url->link('account/address', '', true); + $data['wishlist'] = $this->url->link('account/wishlist'); + $data['order'] = $this->url->link('account/order', '', true); + $data['download'] = $this->url->link('account/download', '', true); + $data['reward'] = $this->url->link('account/reward', '', true); + $data['return'] = $this->url->link('account/return', '', true); + $data['transaction'] = $this->url->link('account/transaction', '', true); + $data['newsletter'] = $this->url->link('account/newsletter', '', true); + $data['recurring'] = $this->url->link('account/recurring', '', true); + + return $this->load->view('extension/module/account', $data); + } +}
\ No newline at end of file |