OpenCart 🇺🇦

Схема

public mixed index ( )

Аргументы

Аргумент Возможный тип Описание
У метода нет аргументов

Описание

Метод пока еще не документирован.

Исходный код

$this->language->load('checkout/checkout');

$this->data['text_new_customer'] = $this->language->get('text_new_customer');
$this->data['text_returning_customer'] = $this->language->get('text_returning_customer');
$this->data['text_checkout'] = $this->language->get('text_checkout');
$this->data['text_register'] = $this->language->get('text_register');
$this->data['text_guest'] = $this->language->get('text_guest');
$this->data['text_i_am_returning_customer'] = $this->language->get('text_i_am_returning_customer');
$this->data['text_register_account'] = $this->language->get('text_register_account');
$this->data['text_forgotten'] = $this->language->get('text_forgotten');

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

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

$this->data['guest_checkout'] = ($this->config->get('config_guest_checkout') && !$this->config->get('config_customer_price') && !$this->cart->hasDownload());

if (isset($this->session->data['account'])) {
	$this->data['account'] = $this->session->data['account'];
} else {
	$this->data['account'] = 'register';
}

$this->data['forgotten'] = $this->url->link('account/forgotten', '', 'SSL');

if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/checkout/login.tpl')) {
	$this->template = $this->config->get('config_template') . '/template/checkout/login.tpl';
} else {
	$this->template = 'default/template/checkout/login.tpl';
}
		
$this->response->setOutput($this->render());