$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_yes'] = $this->language->get('text_yes');
$this->data['text_no'] = $this->language->get('text_no');
$this->data['entry_name'] = $this->language->get('entry_name');
$this->data['entry_iso_code_2'] = $this->language->get('entry_iso_code_2');
$this->data['entry_iso_code_3'] = $this->language->get('entry_iso_code_3');
$this->data['entry_address_format'] = $this->language->get('entry_address_format');
$this->data['entry_postcode_required'] = $this->language->get('entry_postcode_required');
$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'] = '';
}
$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/country', 'token=' . $this->session->data['token'] . $url, 'SSL'),
'separator' => ' :: '
);
if (!isset($this->request->get['country_id'])) {
$this->data['action'] = $this->url->link('localisation/country/insert', 'token=' . $this->session->data['token'] . $url, 'SSL');
} else {
$this->data['action'] = $this->url->link('localisation/country/update', 'token=' . $this->session->data['token'] . '&country_id=' . $this->request->get['country_id'] . $url, 'SSL');
}
$this->data['cancel'] = $this->url->link('localisation/country', 'token=' . $this->session->data['token'] . $url, 'SSL');
if (isset($this->request->get['country_id']) && ($this->request->server['REQUEST_METHOD'] != 'POST')) {
$country_info = $this->model_localisation_country->getCountry($this->request->get['country_id']);
}
if (isset($this->request->post['name'])) {
$this->data['name'] = $this->request->post['name'];
} elseif (!empty($country_info)) {
$this->data['name'] = $country_info['name'];
} else {
$this->data['name'] = '';
}
if (isset($this->request->post['iso_code_2'])) {
$this->data['iso_code_2'] = $this->request->post['iso_code_2'];
} elseif (!empty($country_info)) {
$this->data['iso_code_2'] = $country_info['iso_code_2'];
} else {
$this->data['iso_code_2'] = '';
}
if (isset($this->request->post['iso_code_3'])) {
$this->data['iso_code_3'] = $this->request->post['iso_code_3'];
} elseif (!empty($country_info)) {
$this->data['iso_code_3'] = $country_info['iso_code_3'];
} else {
$this->data['iso_code_3'] = '';
}
if (isset($this->request->post['address_format'])) {
$this->data['address_format'] = $this->request->post['address_format'];
} elseif (!empty($country_info)) {
$this->data['address_format'] = $country_info['address_format'];
} else {
$this->data['address_format'] = '';
}
if (isset($this->request->post['postcode_required'])) {
$this->data['postcode_required'] = $this->request->post['postcode_required'];
} elseif (!empty($country_info)) {
$this->data['postcode_required'] = $country_info['postcode_required'];
} else {
$this->data['postcode_required'] = 0;
}
if (isset($this->request->post['status'])) {
$this->data['status'] = $this->request->post['status'];
} elseif (!empty($country_info)) {
$this->data['status'] = $country_info['status'];
} else {
$this->data['status'] = '1';
}
$this->template = 'localisation/country_form.tpl';
$this->children = array(
'common/header',
'common/footer'
);
$this->response->setOutput($this->render());