OpenCart 🇺🇦

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

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

$this->document->setTitle($this->language->get('heading_title'));

$this->data['breadcrumbs'] = array();

$this->data['breadcrumbs'][] = array(
	'text'      => $this->language->get('text_home'),
	'href'      => $this->url->link('common/home'),       	
	'separator' => false
);

$this->data['breadcrumbs'][] = array(
	'text'      => $this->language->get('text_account'),
	'href'      => $this->url->link('account/account', '', 'SSL'),
	'separator' => $this->language->get('text_separator')
);

$this->data['breadcrumbs'][] = array(
	'text'      => $this->language->get('text_success'),
	'href'      => $this->url->link('account/success'),
	'separator' => $this->language->get('text_separator')
);

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

$this->load->model('account/customer_group');

$customer_group = $this->model_account_customer_group->getCustomerGroup($this->customer->getCustomerGroupId());

if ($customer_group && !$customer_group['approval']) {
	$this->data['text_message'] = sprintf($this->language->get('text_message'), $this->url->link('information/contact'));
} else {
	$this->data['text_message'] = sprintf($this->language->get('text_approval'), $this->config->get('config_name'), $this->url->link('information/contact'));
}

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

if ($this->cart->hasProducts()) {
	$this->data['continue'] = $this->url->link('checkout/cart', '', 'SSL');
} else {
	$this->data['continue'] = $this->url->link('account/account', '', 'SSL');
}

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

$this->children = array(
	'common/column_left',
	'common/column_right',
	'common/content_top',
	'common/content_bottom',
	'common/footer',
	'common/header'	
);

$this->response->setOutput($this->render());				

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

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

Комментарии