OpenCart 🇺🇦

Схема

public mixed index ( )

Аргументы

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

Описание

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

Исходный код

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

$this->load->model('catalog/information');

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

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

if (isset($this->request->get['information_id'])) {
	$information_id = (int)$this->request->get['information_id'];
} else {
	$information_id = 0;
}

$information_info = $this->model_catalog_information->getInformation($information_id);

if ($information_info) {
	$this->document->setTitle($information_info['title']);

	$this->data['breadcrumbs'][] = array(
		'text'      => $information_info['title'],
		'href'      => $this->url->link('information/information', 'information_id=' .  $information_id),      		
		'separator' => $this->language->get('text_separator')
	);

	$this->data['heading_title'] = $information_info['title'];

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

	$this->data['description'] = html_entity_decode($information_info['description'], ENT_QUOTES, 'UTF-8');

	$this->data['continue'] = $this->url->link('common/home');

	if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/information/information.tpl')) {
		$this->template = $this->config->get('config_template') . '/template/information/information.tpl';
	} else {
		$this->template = 'default/template/information/information.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());
} else {
	$this->data['breadcrumbs'][] = array(
		'text'      => $this->language->get('text_error'),
		'href'      => $this->url->link('information/information', 'information_id=' . $information_id),
		'separator' => $this->language->get('text_separator')
	);

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

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

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

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

	$this->data['continue'] = $this->url->link('common/home');

	$this->response->addHeader($this->request->server['SERVER_PROTOCOL'] . '/1.1 404 Not Found');

	if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/error/not_found.tpl')) {
		$this->template = $this->config->get('config_template') . '/template/error/not_found.tpl';
	} else {
		$this->template = 'default/template/error/not_found.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());
}