OpenCart 🇺🇦

Схема

protected mixed getForm ( )

Аргументы

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

Описание

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

Исходный код

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

$this->data['entry_title'] = $this->language->get('entry_title');
$this->data['entry_unit'] = $this->language->get('entry_unit');
$this->data['entry_value'] = $this->language->get('entry_value');

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

if (isset($this->error['warning'])) {
	$this->data['error_warning'] = $this->error['warning'];
} else {
	$this->data['error_warning'] = '';
}

if (isset($this->error['title'])) {
	$this->data['error_title'] = $this->error['title'];
} else {
	$this->data['error_title'] = array();
}	

if (isset($this->error['unit'])) {
	$this->data['error_unit'] = $this->error['unit'];
} else {
	$this->data['error_unit'] = array();
}	

$url = '';

if (isset($this->request->get['sort'])) {
	$url .= '&sort=' . $this->request->get['sort'];
}

if (isset($this->request->get['order'])) {
	$url .= '&order=' . $this->request->get['order'];
}

if (isset($this->request->get['page'])) {
	$url .= '&page=' . $this->request->get['page'];
}

$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('localisation/weight_class', 'token=' . $this->session->data['token'] . $url, 'SSL'),
	'separator' => ' :: '
);

if (!isset($this->request->get['weight_class_id'])) {
	$this->data['action'] = $this->url->link('localisation/weight_class/insert', 'token=' . $this->session->data['token'] . $url, 'SSL');
} else { 
	$this->data['action'] = $this->url->link('localisation/weight_class/update', 'token=' . $this->session->data['token'] . '&weight_class_id=' . $this->request->get['weight_class_id'] . $url, 'SSL');
}

$this->data['cancel'] = $this->url->link('localisation/weight_class', 'token=' . $this->session->data['token'] . $url, 'SSL');

if (isset($this->request->get['weight_class_id']) && ($this->request->server['REQUEST_METHOD'] != 'POST')) {
	$weight_class_info = $this->model_localisation_weight_class->getWeightClass($this->request->get['weight_class_id']);
}

$this->load->model('localisation/language');

$this->data['languages'] = $this->model_localisation_language->getLanguages();

if (isset($this->request->post['weight_class_description'])) {
	$this->data['weight_class_description'] = $this->request->post['weight_class_description'];
} elseif (isset($this->request->get['weight_class_id'])) {
	$this->data['weight_class_description'] = $this->model_localisation_weight_class->getWeightClassDescriptions($this->request->get['weight_class_id']);
} else {
	$this->data['weight_class_description'] = array();
}	

if (isset($this->request->post['value'])) {
	$this->data['value'] = $this->request->post['value'];
} elseif (!empty($weight_class_info)) {
	$this->data['value'] = $weight_class_info['value'];
} else {
	$this->data['value'] = '';
}

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

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