OpenCart 🇺🇦

Схема

public mixed index ( )

Аргументы

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

Описание

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

Исходный код

$this->language->load('extension/manager');

$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', 'token=' . $this->session->data['token'], 'SSL'),
	'separator' => false
);

$this->data['breadcrumbs'][] = array(
	'text'      => $this->language->get('heading_title'),
	'href'      => $this->url->link('extension/manager', 'token=' . $this->session->data['token'], 'SSL'),
	'separator' => ' :: '
);

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

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

$this->data['token'] = $this->session->data['token'];

$this->template = 'extension/manager.tpl';
$this->children = array(
	'common/header',
	'common/footer'
);

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