Перейти до вмісту
Пошук в
  • Детальніше...
Шукати результати, які ...
Шукати результати в ...

dvi30011973

Новачок
  
  • Публікації

    37
  • З нами

  • Відвідування

Усі публікації користувача dvi30011973

  1. Вот файл Coupon.Что нужно исправит? <?php class ControllerSaleCoupon extends Controller { private $error = array(); public function index() { $this->load->language('sale/coupon'); $this->document->title = $this->language->get('heading_title'); $this->load->model('sale/coupon'); $this->getList(); } public function insert() { $this->load->language('sale/coupon'); $this->document->title = $this->language->get('heading_title'); $this->load->model('sale/coupon'); if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) { $this->model_sale_coupon->addCoupon($this->request->post); $this->session->data['success'] = $this->language->get('text_success'); $url = ''; if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page']; } if (isset($this->request->get['sort'])) { $url .= '&sort=' . $this->request->get['sort']; } if (isset($this->request->get['order'])) { $url .= '&order=' . $this->request->get['order']; } $this->redirect(HTTPS_SERVER . 'index.php?route=sale/coupon&token=' . $this->session->data['token'] . $url); } $this->getForm(); } public function update() { $this->load->language('sale/coupon'); $this->document->title = $this->language->get('heading_title'); $this->load->model('sale/coupon'); if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) { $this->model_sale_coupon->editCoupon($this->request->get['coupon_id'], $this->request->post); $this->session->data['success'] = $this->language->get('text_success'); $url = ''; if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page']; } if (isset($this->request->get['sort'])) { $url .= '&sort=' . $this->request->get['sort']; } if (isset($this->request->get['order'])) { $url .= '&order=' . $this->request->get['order']; } $this->redirect(HTTPS_SERVER . 'index.php?route=sale/coupon&token=' . $this->session->data['token'] . $url); } $this->getForm(); } public function delete() { $this->load->language('sale/coupon'); $this->document->title = $this->language->get('heading_title'); $this->load->model('sale/coupon'); if (isset($this->request->post['selected']) && $this->validateDelete()) { foreach ($this->request->post['selected'] as $coupon_id) { $this->model_sale_coupon->deleteCoupon($coupon_id); } $this->session->data['success'] = $this->language->get('text_success'); $url = ''; if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page']; } if (isset($this->request->get['sort'])) { $url .= '&sort=' . $this->request->get['sort']; } if (isset($this->request->get['order'])) { $url .= '&order=' . $this->request->get['order']; } $this->redirect(HTTPS_SERVER . 'index.php?route=sale/coupon&token=' . $this->session->data['token'] . $url); } $this->getList(); } private function getList() { if (isset($this->request->get['page'])) { $page = $this->request->get['page']; } else { $page = 1; } if (isset($this->request->get['sort'])) { $sort = $this->request->get['sort']; } else { $sort = 'cd.name'; } if (isset($this->request->get['order'])) { $order = $this->request->get['order']; } else { $order = 'ASC'; } $url = ''; if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page']; } if (isset($this->request->get['sort'])) { $url .= '&sort=' . $this->request->get['sort']; } if (isset($this->request->get['order'])) { $url .= '&order=' . $this->request->get['order']; } $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=sale/coupon&token=' . $this->session->data['token'] . $url, 'text' => $this->language->get('heading_title'), 'separator' => ' :: ' ); $this->data['insert'] = HTTPS_SERVER . 'index.php?route=sale/coupon/insert&token=' . $this->session->data['token'] . $url; $this->data['delete'] = HTTPS_SERVER . 'index.php?route=sale/coupon/delete&token=' . $this->session->data['token'] . $url; $this->data['coupons'] = array(); $data = array( 'sort' => $sort, 'order' => $order, 'start' => ($page - 1) * $this->config->get('config_admin_limit'), 'limit' => $this->config->get('config_admin_limit') ); $coupon_total = $this->model_sale_coupon->getTotalCoupons(); $results = $this->model_sale_coupon->getCoupons($data); foreach ($results as $result) { $action = array(); $action[] = array( 'text' => $this->language->get('text_edit'), 'href' => HTTPS_SERVER . 'index.php?route=sale/coupon/update&token=' . $this->session->data['token'] . '&coupon_id=' . $result['coupon_id'] . $url ); $this->data['coupons'][] = array( 'coupon_id' => $result['coupon_id'], 'name' => $result['name'], 'code' => $result['code'], 'discount' => $result['discount'], 'date_start' => date($this->language->get('date_format_short'), strtotime($result['date_start'])), 'date_end' => date($this->language->get('date_format_short'), strtotime($result['date_end'])), 'status' => ($result['status'] ? $this->language->get('text_enabled') : $this->language->get('text_disabled')), 'selected' => isset($this->request->post['selected']) && in_array($result['coupon_id'], $this->request->post['selected']), 'action' => $action ); } $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['text_no_results'] = $this->language->get('text_no_results'); $this->data['column_name'] = $this->language->get('column_name'); $this->data['column_code'] = $this->language->get('column_code'); $this->data['column_discount'] = $this->language->get('column_discount'); $this->data['column_date_start'] = $this->language->get('column_date_start'); $this->data['column_date_end'] = $this->language->get('column_date_end'); $this->data['column_status'] = $this->language->get('column_status'); $this->data['column_action'] = $this->language->get('column_action'); $this->data['button_insert'] = $this->language->get('button_insert'); $this->data['button_delete'] = $this->language->get('button_delete'); if (isset($this->error['warning'])) { $this->data['error_warning'] = $this->error['warning']; } else { $this->data['error_warning'] = ''; } if (isset($this->session->data['success'])) { $this->data['success'] = $this->session->data['success']; unset($this->session->data['success']); } else { $this->data['success'] = ''; } $url = ''; if ($order == 'ASC') { $url .= '&order=DESC'; } else { $url .= '&order=ASC'; } if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page']; } $this->data['sort_name'] = HTTPS_SERVER . 'index.php?route=sale/coupon&token=' . $this->session->data['token'] . '&sort=cd.name' . $url; $this->data['sort_code'] = HTTPS_SERVER . 'index.php?route=sale/coupon&token=' . $this->session->data['token'] . '&sort=c.code' . $url; $this->data['sort_discount'] = HTTPS_SERVER . 'index.php?route=sale/coupon&token=' . $this->session->data['token'] . '&sort=c.discount' . $url; $this->data['sort_date_start'] = HTTPS_SERVER . 'index.php?route=sale/coupon&token=' . $this->session->data['token'] . '&sort=c.date_start' . $url; $this->data['sort_date_end'] = HTTPS_SERVER . 'index.php?route=sale/coupon&token=' . $this->session->data['token'] . '&sort=c.date_end' . $url; $this->data['sort_status'] = HTTPS_SERVER . 'index.php?route=sale/coupon&token=' . $this->session->data['token'] . '&sort=c.status' . $url; $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']; } $pagination = new Pagination(); $pagination->total = $coupon_total; $pagination->page = $page; $pagination->limit = $this->config->get('config_admin_limit'); $pagination->text = $this->language->get('text_pagination'); $pagination->url = HTTPS_SERVER . 'index.php?route=sale/coupon&token=' . $this->session->data['token'] . $url . '&page={page}'; $this->data['pagination'] = $pagination->render(); $this->data['sort'] = $sort; $this->data['order'] = $order; $this->template = 'sale/coupon_list.tpl'; $this->children = array( 'common/header', 'common/footer' ); $this->response->setOutput($this->render(TRUE), $this->config->get('config_compression')); } private function 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_yes'] = $this->language->get('text_yes'); $this->data['text_no'] = $this->language->get('text_no'); $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_description'] = $this->language->get('entry_description'); $this->data['entry_code'] = $this->language->get('entry_code'); $this->data['entry_discount'] = $this->language->get('entry_discount'); $this->data['entry_logged'] = $this->language->get('entry_logged'); $this->data['entry_shipping'] = $this->language->get('entry_shipping'); $this->data['entry_type'] = $this->language->get('entry_type'); $this->data['entry_total'] = $this->language->get('entry_total'); $this->data['entry_product'] = $this->language->get('entry_product'); $this->data['entry_date_start'] = $this->language->get('entry_date_start'); $this->data['entry_date_end'] = $this->language->get('entry_date_end'); $this->data['entry_uses_total'] = $this->language->get('entry_uses_total'); $this->data['entry_uses_customer'] = $this->language->get('entry_uses_customer'); $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'); $this->data['tab_general'] = $this->language->get('tab_general'); $this->data['token'] = $this->session->data['token']; 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['description'])) { $this->data['error_description'] = $this->error['description']; } else { $this->data['error_description'] = ''; } if (isset($this->error['code'])) { $this->data['error_code'] = $this->error['code']; } else { $this->data['error_code'] = ''; } if (isset($this->error['date_start'])) { $this->data['error_date_start'] = $this->error['date_start']; } else { $this->data['error_date_start'] = ''; } if (isset($this->error['date_end'])) { $this->data['error_date_end'] = $this->error['date_end']; } else { $this->data['error_date_end'] = ''; } $url = ''; if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page']; } if (isset($this->request->get['sort'])) { $url .= '&sort=' . $this->request->get['sort']; } if (isset($this->request->get['order'])) { $url .= '&order=' . $this->request->get['order']; } $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=sale/coupon&token=' . $this->session->data['token'] . $url, 'text' => $this->language->get('heading_title'), 'separator' => ' :: ' ); if (!isset($this->request->get['coupon_id'])) { $this->data['action'] = HTTPS_SERVER . 'index.php?route=sale/coupon/insert&token=' . $this->session->data['token'] . $url; } else { $this->data['action'] = HTTPS_SERVER . 'index.php?route=sale/coupon/update&token=' . $this->session->data['token'] . '&coupon_id=' . $this->request->get['coupon_id'] . $url; } $this->data['cancel'] = HTTPS_SERVER . 'index.php?route=sale/coupon&token=' . $this->session->data['token'] . $url; if (isset($this->request->get['coupon_id']) && (!$this->request->server['REQUEST_METHOD'] != 'POST')) { $coupon_info = $this->model_sale_coupon->getCoupon($this->request->get['coupon_id']); } $this->load->model('localisation/language'); $this->data['languages'] = $this->model_localisation_language->getLanguages(); if (isset($this->request->post['coupon_description'])) { $this->data['coupon_description'] = $this->request->post['coupon_description']; } elseif (isset($this->request->get['coupon_id'])) { $this->data['coupon_description'] = $this->model_sale_coupon->getCouponDescriptions($this->request->get['coupon_id']); } else { $this->data['coupon_description'] = array(); } if (isset($this->request->post['code'])) { $this->data['code'] = $this->request->post['code']; } elseif (isset($coupon_info)) { $this->data['code'] = $coupon_info['code']; } else { $this->data['code'] = ''; } if (isset($this->request->post['type'])) { $this->data['type'] = $this->request->post['type']; } elseif (isset($coupon_info)) { $this->data['type'] = $coupon_info['type']; } else { $this->data['type'] = ''; } if (isset($this->request->post['discount'])) { $this->data['discount'] = $this->request->post['discount']; } elseif (isset($coupon_info)) { $this->data['discount'] = $coupon_info['discount']; } else { $this->data['discount'] = ''; } if (isset($this->request->post['logged'])) { $this->data['logged'] = $this->request->post['logged']; } elseif (isset($coupon_info)) { $this->data['logged'] = $coupon_info['logged']; } else { $this->data['logged'] = ''; } if (isset($this->request->post['shipping'])) { $this->data['shipping'] = $this->request->post['shipping']; } elseif (isset($coupon_info)) { $this->data['shipping'] = $coupon_info['shipping']; } else { $this->data['shipping'] = ''; } if (isset($this->request->post['total'])) { $this->data['total'] = $this->request->post['total']; } elseif (isset($coupon_info)) { $this->data['total'] = $coupon_info['total']; } else { $this->data['total'] = ''; } if (isset($this->request->post['product'])) { $this->data['coupon_product'] = $this->request->post['product']; } elseif (isset($coupon_info)) { $this->data['coupon_product'] = $this->model_sale_coupon->getCouponProducts($this->request->get['coupon_id']); } else { $this->data['coupon_product'] = array(); } $this->load->model('catalog/category'); $this->data['categories'] = $this->model_catalog_category->getCategories(0); if (isset($this->request->post['date_start'])) { $this->data['date_start'] = $this->request->post['date_start']; } elseif (isset($coupon_info)) { $this->data['date_start'] = date('Y-m-d', strtotime($coupon_info['date_start'])); } else { $this->data['date_start'] = date('Y-m-d', time()); } if (isset($this->request->post['date_end'])) { $this->data['date_end'] = $this->request->post['date_end']; } elseif (isset($coupon_info)) { $this->data['date_end'] = date('Y-m-d', strtotime($coupon_info['date_end'])); } else { $this->data['date_end'] = date('Y-m-d', time()); } if (isset($this->request->post['uses_total'])) { $this->data['uses_total'] = $this->request->post['uses_total']; } elseif (isset($coupon_info)) { $this->data['uses_total'] = $coupon_info['uses_total']; } else { $this->data['uses_total'] = 1; } if (isset($this->request->post['uses_customer'])) { $this->data['uses_customer'] = $this->request->post['uses_customer']; } elseif (isset($coupon_info)) { $this->data['uses_customer'] = $coupon_info['uses_customer']; } else { $this->data['uses_customer'] = 1; } if (isset($this->request->post['status'])) { $this->data['status'] = $this->request->post['status']; } elseif (isset($coupon_info)) { $this->data['status'] = $coupon_info['status']; } else { $this->data['status'] = 1; } $this->template = 'sale/coupon_form.tpl'; $this->children = array( 'common/header', 'common/footer' ); $this->response->setOutput($this->render(TRUE), $this->config->get('config_compression')); } private function validateForm() { if (!$this->user->hasPermission('modify', 'sale/coupon')) { $this->error['warning'] = $this->language->get('error_permission'); } foreach ($this->request->post['coupon_description'] as $language_id => $value) { if ((strlen(utf8_decode($value['name'])) < 3) || (strlen(utf8_decode($value['name'])) > 64)) { $this->error['name'][$language_id] = $this->language->get('error_name'); } if (strlen(utf8_decode($value['description'])) < 3) { $this->error['description'][$language_id] = $this->language->get('error_description'); } } if ((strlen(utf8_decode($this->request->post['code'])) < 3) || (strlen(utf8_decode($this->request->post['code'])) > 10)) { $this->error['code'] = $this->language->get('error_code'); } if (!$this->error) { return TRUE; } else { return FALSE; } } public function category() { $this->load->model('catalog/product'); if (isset($this->request->get['category_id'])) { $category_id = $this->request->get['category_id']; } else { $category_id = 0; } $product_data = array(); $results = $this->model_catalog_product->getProductsByCategoryId($category_id); foreach ($results as $result) { $product_data[] = array( 'product_id' => $result['product_id'], 'name' => $result['name'], 'model' => $result['model'] ); } $this->load->library('json'); $this->response->setOutput(Json::encode($product_data)); } public function product() { $this->load->model('catalog/product'); if (isset($this->request->post['coupon_product'])) { $products = $this->request->post['coupon_product']; } else { $products = array(); } $product_data = array(); foreach ($products as $product_id) { $product_info = $this->model_catalog_product->getProduct($product_id); if ($product_info) { $product_data[] = array( 'product_id' => $product_info['product_id'], 'name' => $product_info['name'], 'model' => $product_info['model'] ); } } $this->load->library('json'); $this->response->setOutput(Json::encode($product_data)); } private function validateDelete() { if (!$this->user->hasPermission('modify', 'sale/coupon')) { $this->error['warning'] = $this->language->get('error_permission'); } if (!$this->error) { return TRUE; } else { return FALSE; } } } ?>
  2. Я установил модуль орлаты nalogenniy_np.Выдаёт ошибку: Fatal error: Class 'Controllerpaymentnalogenniynp' not found in C:\xampp\htdocs\ooo-arle.ru\system\engine\front.php on line 44 Если кто знает как исправить.Помогите. Или подскажите где можно скачать?!
  3. При заказе товара выдаётся ошибка модуля наложенного платежа : Предупреждение: Отсутствует аргумент 2 для ModelPaymentNalogenniyNp :: GetMethod (), называемый в C: XAMPP htdocs ооо-arle.ru каталог контроллера проверки guest_step_2.php на линии 139 и определены в C: XAMPP htdocs ооо-arle.ru каталог модели оплаты nalogenniy_np.php на линии 3Notice: Undefined переменной: Всего в C: XAMPP htdocs ооо-arle.ru каталог модели оплаты nalogenniy_np.php в строке 8 Кто поможет исправить!?
  4. Кто подскажет.В настройках панели пункт Изображения пропали логотипы для установки.Пропали совсем.Как исправить?Подскажите!
  5. Кто подскажет.В настройках панели пункт Изображения пропали логотипы для установки.Пропали совсем.Как исправить?Подскажите!
  6. помогите поменять цвет шаблона и немного его увеличить по сторонам!и можно ли помтавить картинку места фона?Кто знает как,просьба помочь.
  7. Скрипт версии ocstore_v0.1.7 установлен на win 7. И ещё не показывает цену това в рублях. только евро и доллар.Как исправить не знаете?
  8. <?php class ControllerPaymentNalogenniyNp extends Controller { private $error = array(); public function index() { $this->load->language('payment/nalogenniy_np'); $this->document->setTitle($this->language->get('heading_title')); $this->load->model('setting/setting'); if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validate()) { $this->model_setting_setting->editSetting('nalogenniy_np', $this->request->post); $this->session->data['success'] = $this->language->get('text_success'); $this->redirect($this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL')); } $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_all_zones'] = $this->language->get('text_all_zones'); $this->data['entry_bank'] = $this->language->get('entry_bank'); $this->data['entry_total'] = $this->language->get('entry_total'); $this->data['entry_order_status'] = $this->language->get('entry_order_status'); $this->data['entry_geo_zone'] = $this->language->get('entry_geo_zone'); $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->load->model('localisation/language'); $languages = $this->model_localisation_language->getLanguages(); foreach ($languages as $language) { if (isset($this->error['bank_' . $language['language_id']])) { $this->data['error_bank_' . $language['language_id']] = $this->error['bank_' . $language['language_id']]; } else { $this->data['error_bank_' . $language['language_id']] = ''; } } $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('text_payment'), 'href' => $this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL'), 'separator' => ' :: ' ); $this->data['breadcrumbs'][] = array( 'text' => $this->language->get('heading_title'), 'href' => $this->url->link('payment/nalogenniy_np', 'token=' . $this->session->data['token'], 'SSL'), 'separator' => ' :: ' ); $this->data['action'] = $this->url->link('payment/nalogenniy_np', 'token=' . $this->session->data['token'], 'SSL'); $this->data['cancel'] = $this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL'); $this->load->model('localisation/language'); foreach ($languages as $language) { if (isset($this->request->post['nalogenniy_np_bank_' . $language['language_id']])) { $this->data['nalogenniy_np_bank_' . $language['language_id']] = $this->request->post['nalogenniy_np_bank_' . $language['language_id']]; } else { $this->data['nalogenniy_np_bank_' . $language['language_id']] = $this->config->get('nalogenniy_np_bank_' . $language['language_id']); } } $this->data['languages'] = $languages; if (isset($this->request->post['nalogenniy_np_total'])) { $this->data['nalogenniy_np_total'] = $this->request->post['nalogenniy_np_total']; } else { $this->data['nalogenniy_np_total'] = $this->config->get('nalogenniy_np_total'); } if (isset($this->request->post['nalogenniy_np_order_status_id'])) { $this->data['nalogenniy_np_order_status_id'] = $this->request->post['nalogenniy_np_order_status_id']; } else { $this->data['nalogenniy_np_order_status_id'] = $this->config->get('nalogenniy_np_order_status_id'); } $this->load->model('localisation/order_status'); $this->data['order_statuses'] = $this->model_localisation_order_status->getOrderStatuses(); if (isset($this->request->post['nalogenniy_np_geo_zone_id'])) { $this->data['nalogenniy_np_geo_zone_id'] = $this->request->post['nalogenniy_np_geo_zone_id']; } else { $this->data['nalogenniy_np_geo_zone_id'] = $this->config->get('nalogenniy_np_geo_zone_id'); } $this->load->model('localisation/geo_zone'); $this->data['geo_zones'] = $this->model_localisation_geo_zone->getGeoZones(); if (isset($this->request->post['nalogenniy_np_status'])) { $this->data['nalogenniy_np_status'] = $this->request->post['nalogenniy_np_status']; } else { $this->data['nalogenniy_np_status'] = $this->config->get('nalogenniy_np_status'); } if (isset($this->request->post['nalogenniy_np_sort_order'])) { $this->data['nalogenniy_np_sort_order'] = $this->request->post['nalogenniy_np_sort_order']; } else { $this->data['nalogenniy_np_sort_order'] = $this->config->get('nalogenniy_np_sort_order'); } $this->template = 'payment/nalogenniy_np.tpl'; $this->children = array( 'common/header', 'common/footer' ); $this->response->setOutput($this->render()); } private function validate() { if (!$this->user->hasPermission('modify', 'payment/nalogenniy_np')) { $this->error['warning'] = $this->language->get('error_permission'); } $this->load->model('localisation/language'); $languages = $this->model_localisation_language->getLanguages(); foreach ($languages as $language) { if (!$this->request->post['nalogenniy_np_bank_' . $language['language_id']]) { $this->error['bank_' . $language['language_id']] = $this->language->get('error_bank'); } } if (!$this->error) { return true; } else { return false; } } } ?>
  9. Помогите кто знает.После установки модуля наложенного платежа выходит ошибка: Fatal error: Call to a member function link() on a non-object in C:\xampp\htdocs\ooo-arle.ru\admin\controller\payment\nalogenniy_np.php on line 60 КАК ИСПРАВИТ?

×
×
  • Створити...

Important Information

На нашому сайті використовуються файли cookie і відбувається обробка деяких персональних даних користувачів, щоб поліпшити користувальницький інтерфейс. Щоб дізнатися для чого і які персональні дані ми обробляємо перейдіть за посиланням . Якщо Ви натиснете «Я даю згоду», це означає, що Ви розумієте і приймаєте всі умови, зазначені в цьому Повідомленні про конфіденційність.