$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/length_class', 'token=' . $this->session->data['token'] . $url, 'SSL'),
'separator' => ' :: '
);
if (!isset($this->request->get['length_class_id'])) {
$this->data['action'] = $this->url->link('localisation/length_class/insert', 'token=' . $this->session->data['token'] . $url, 'SSL');
} else {
$this->data['action'] = $this->url->link('localisation/length_class/update', 'token=' . $this->session->data['token'] . '&length_class_id=' . $this->request->get['length_class_id'] . $url, 'SSL');
}
$this->data['cancel'] = $this->url->link('localisation/length_class', 'token=' . $this->session->data['token'] . $url, 'SSL');
if (isset($this->request->get['length_class_id']) && ($this->request->server['REQUEST_METHOD'] != 'POST')) {
$length_class_info = $this->model_localisation_length_class->getLengthClass($this->request->get['length_class_id']);
}
$this->load->model('localisation/language');
$this->data['languages'] = $this->model_localisation_language->getLanguages();
if (isset($this->request->post['length_class_description'])) {
$this->data['length_class_description'] = $this->request->post['length_class_description'];
} elseif (isset($this->request->get['length_class_id'])) {
$this->data['length_class_description'] = $this->model_localisation_length_class->getLengthClassDescriptions($this->request->get['length_class_id']);
} else {
$this->data['length_class_description'] = array();
}
if (isset($this->request->post['value'])) {
$this->data['value'] = $this->request->post['value'];
} elseif (!empty($length_class_info)) {
$this->data['value'] = $length_class_info['value'];
} else {
$this->data['value'] = '';
}
$this->template = 'localisation/length_class_form.tpl';
$this->children = array(
'common/header',
'common/footer'
);
$this->response->setOutput($this->render());