OpenCart 🇺🇦

Схема

protected mixed getForm ( )

Аргументы

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

Описание

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

Исходный код

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

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

$this->data['entry_name'] = $this->language->get('entry_name');
$this->data['entry_code'] = $this->language->get('entry_code');
$this->data['entry_locale'] = $this->language->get('entry_locale');
$this->data['entry_image'] = $this->language->get('entry_image');
$this->data['entry_directory'] = $this->language->get('entry_directory');
$this->data['entry_filename'] = $this->language->get('entry_filename');
$this->data['entry_sort_order'] = $this->language->get('entry_sort_order');
$this->data['entry_status'] = $this->language->get('entry_status');

$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['name'])) {
	$this->data['error_name'] = $this->error['name'];
} else {
	$this->data['error_name'] = '';
}

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

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

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

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

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

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

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

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

if (isset($this->request->get['language_id']) && ($this->request->server['REQUEST_METHOD'] != 'POST')) {
	$language_info = $this->model_localisation_language->getLanguage($this->request->get['language_id']);
}

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

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

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

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

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

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

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

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

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

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