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['text_default'] = $this->language->get('text_default');
$this->data['text_image_manager'] = $this->language->get('text_image_manager');
$this->data['text_browse'] = $this->language->get('text_browse');
$this->data['text_clear'] = $this->language->get('text_clear');			
$this->data['text_percent'] = $this->language->get('text_percent');
$this->data['text_amount'] = $this->language->get('text_amount');

$this->data['entry_name'] = $this->language->get('entry_name');
$this->data['entry_store'] = $this->language->get('entry_store');
$this->data['entry_keyword'] = $this->language->get('entry_keyword');
$this->data['entry_image'] = $this->language->get('entry_image');
$this->data['entry_sort_order'] = $this->language->get('entry_sort_order');
$this->data['entry_customer_group'] = $this->language->get('entry_customer_group');

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

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

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'] = '';
}

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

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

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

if (isset($this->request->get['manufacturer_id']) && ($this->request->server['REQUEST_METHOD'] != 'POST')) {
	$manufacturer_info = $this->model_catalog_manufacturer->getManufacturer($this->request->get['manufacturer_id']);
}

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

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

$this->load->model('setting/store');

$this->data['stores'] = $this->model_setting_store->getStores();

if (isset($this->request->post['manufacturer_store'])) {
	$this->data['manufacturer_store'] = $this->request->post['manufacturer_store'];
} elseif (isset($this->request->get['manufacturer_id'])) {
	$this->data['manufacturer_store'] = $this->model_catalog_manufacturer->getManufacturerStores($this->request->get['manufacturer_id']);
} else {
	$this->data['manufacturer_store'] = array(0);
}	

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

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

$this->load->model('tool/image');

if (isset($this->request->post['image']) && file_exists(DIR_IMAGE . $this->request->post['image'])) {
	$this->data['thumb'] = $this->model_tool_image->resize($this->request->post['image'], 100, 100);
} elseif (!empty($manufacturer_info) && $manufacturer_info['image'] && file_exists(DIR_IMAGE . $manufacturer_info['image'])) {
	$this->data['thumb'] = $this->model_tool_image->resize($manufacturer_info['image'], 100, 100);
} else {
	$this->data['thumb'] = $this->model_tool_image->resize('no_image.jpg', 100, 100);
}

$this->data['no_image'] = $this->model_tool_image->resize('no_image.jpg', 100, 100);

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

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

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