OpenCart 🇺🇦

Класс ControllerModuleAccount extends Controller { ... }

Тип Возвр. Описание
protected mixed index ( )
Исходный код метода:
$this->language->load('module/account');

$this->data['heading_title'] = $this->language->get('heading_title');

$this->data['text_register'] = $this->language->get('text_register');
$this->data['text_login'] = $this->language->get('text_login');
$this->data['text_logout'] = $this->language->get('text_logout');
$this->data['text_forgotten'] = $this->language->get('text_forgotten');
$this->data['text_account'] = $this->language->get('text_account');
$this->data['text_edit'] = $this->language->get('text_edit');
$this->data['text_password'] = $this->language->get('text_password');
$this->data['text_address'] = $this->language->get('text_address');
$this->data['text_wishlist'] = $this->language->get('text_wishlist');
$this->data['text_order'] = $this->language->get('text_order');
$this->data['text_download'] = $this->language->get('text_download');
$this->data['text_return'] = $this->language->get('text_return');
$this->data['text_transaction'] = $this->language->get('text_transaction');
$this->data['text_newsletter'] = $this->language->get('text_newsletter');
$this->data['text_recurring'] = $this->language->get('text_recurring');

$this->data['logged'] = $this->customer->isLogged();
$this->data['register'] = $this->url->link('account/register', '', 'SSL');
$this->data['login'] = $this->url->link('account/login', '', 'SSL');
$this->data['logout'] = $this->url->link('account/logout', '', 'SSL');
$this->data['forgotten'] = $this->url->link('account/forgotten', '', 'SSL');
$this->data['account'] = $this->url->link('account/account', '', 'SSL');
$this->data['edit'] = $this->url->link('account/edit', '', 'SSL');
$this->data['password'] = $this->url->link('account/password', '', 'SSL');
$this->data['address'] = $this->url->link('account/address', '', 'SSL');
$this->data['wishlist'] = $this->url->link('account/wishlist');
$this->data['order'] = $this->url->link('account/order', '', 'SSL');
$this->data['download'] = $this->url->link('account/download', '', 'SSL');
$this->data['return'] = $this->url->link('account/return', '', 'SSL');
$this->data['transaction'] = $this->url->link('account/transaction', '', 'SSL');
$this->data['newsletter'] = $this->url->link('account/newsletter', '', 'SSL');
$this->data['recurring'] = $this->url->link('account/recurring', '', 'SSL');

if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/account.tpl')) {
	$this->template = $this->config->get('config_template') . '/template/module/account.tpl';
} else {
	$this->template = 'default/template/module/account.tpl';
}

$this->render();

Связанные классы:

Название класса Роль
class Config { ... } Компонент Config используется в данном классе
class Customer { ... } Компонент Customer используется в данном классе
class Language { ... } Компонент Language используется в данном классе
class Url { ... } Компонент Url используется в данном классе

Комментарии