alguma dica?
tentei fazer um novo módulo, e no controller pus: (mas não dá).
Código: Selecionar todos<?php
class ControllerTotalCodFee extends Controller {
private $error = array();
public function index() {
$this->load->language('total/cod_fee');
$this->document->title = $this->language->get('heading_title');
$this->load->model('setting/setting');
if (($this->request->server['REQUEST_METHOD'] == 'POST') && ($this->validate())) {
$this->model_setting_setting->editSetting('cod_fee', $this->request->post);
$this->session->data['success'] = $this->language->get('text_success');
$this->redirect(HTTPS_SERVER . 'index.php?route=extension/total&token=' . $this->session->data['token']);
}
$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_cod_tax'] = $this->language->get('entry_cod_tax');
$this->data['entry_cod_tax_perc'] = $this->language->get('entry_cod_tax_perc');
$this->data['entry_cod_free'] = $this->language->get('entry_cod_free');
$this->data['entry_cod_free_value'] = $this->language->get('entry_cod_free_value');
$this->data['entry_cod_free_type'] = $this->language->get('entry_cod_free_type');
$this->data['entry_cod_free_fixed'] = $this->language->get('entry_cod_free_fixed');
$this->data['entry_cod_free_perc'] = $this->language->get('entry_cod_free_perc');
$this->data['entry_tax'] = $this->language->get('entry_tax');
$this->data['text_none'] = $this->language->get('text_none');
$this->data['entry_status'] = $this->language->get('entry_status');
$this->data['entry_sort_order'] = $this->language->get('entry_sort_order');
$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'] = '';
}
$this->document->breadcrumbs = array();
$this->document->breadcrumbs[] = array(
'href' => HTTPS_SERVER . 'index.php?route=common/home&token=' . $this->session->data['token'],
'text' => $this->language->get('text_home'),
'separator' => FALSE
);
$this->document->breadcrumbs[] = array(
'href' => HTTPS_SERVER . 'index.php?route=extension/total&token=' . $this->session->data['token'],
'text' => $this->language->get('text_total'),
'separator' => ' :: '
);
$this->document->breadcrumbs[] = array(
'href' => HTTPS_SERVER . 'index.php?route=total/cod_fee&token=' . $this->session->data['token'],
'text' => $this->language->get('heading_title'),
'separator' => ' :: '
);
$this->data['action'] = HTTPS_SERVER . 'index.php?route=total/cod_fee&token=' . $this->session->data['token'];
$this->data['cancel'] = HTTPS_SERVER . 'index.php?route=extension/total&token=' . $this->session->data['token'];
if (isset($this->request->post['cod_tax'])) {
$this->data['cod_tax'] = $this->request->post['cod_tax'];
} else {
$this->data['cod_tax'] = $this->config->get('cod_tax');
}
if (isset($this->request->post['cod_tax_perc'])) {
$this->data['cod_tax_perc'] = $this->request->post['cod_tax_perc'];
} else {
$this->data['cod_tax_perc'] = $this->config->get('cod_tax_perc');
}
if (isset($this->request->post['cod_free'])) {
$this->data['cod_free'] = $this->request->post['cod_free'];
} else {
$this->data['cod_free'] = $this->config->get('cod_free');
}
if (isset($this->request->post['cod_free_value'])) {
$this->data['cod_free_value'] = $this->request->post['cod_free_value'];
} else {
$this->data['cod_free_value'] = $this->config->get('cod_free_value');
}
if (isset($this->request->post['cod_free_type'])) {
$this->data['cod_free_type'] = $this->request->post['cod_free_type'];
} else {
$this->data['cod_free_type'] = $this->config->get('cod_free_type');
}
if (isset($this->request->post['cod_fee_tax_class_id'])) {
$this->data['cod_fee_tax_class_id'] = $this->request->post['cod_fee_tax_class_id'];
} else {
$this->data['cod_fee_tax_class_id'] = $this->config->get('cod_fee_tax_class_id');
}
if (isset($this->request->post['cod_fee_status'])) {
$this->data['cod_fee_status'] = $this->request->post['cod_fee_status'];
} else {
$this->data['cod_fee_status'] = $this->config->get('cod_fee_status');
}
if (isset($this->request->post['cod_fee_sort_order'])) {
$this->data['cod_fee_sort_order'] = $this->request->post['cod_fee_sort_order'];
} else {
$this->data['cod_fee_sort_order'] = $this->config->get('cod_fee_sort_order');
}
$this->load->model('localisation/tax_class');
$this->data['tax_classes'] = $this->model_localisation_tax_class->getTaxClasses();
$this->template = 'total/cod_fee.tpl';
$this->children = array(
'common/header',
'common/footer'
);
$this->response->setOutput($this->render(TRUE), $this->config->get('config_compression'));
}
private function validate() {
if (!$this->user->hasPermission('modify', 'total/cod_fee')) {
$this->error['warning'] = $this->language->get('error_permission');
}
if (!$this->error) {
return TRUE;
} else {
return FALSE;
}
}
}
?>