From 631b56cbe2bd47b9ed79833d1952f31433016bfa Mon Sep 17 00:00:00 2001 From: Erko Evgen Date: Mon, 12 Sep 2016 13:34:23 +0300 Subject: [PATCH] fix style code --- ajax/cart.php | 69 +- ajax/search_products.php | 109 +- index.php | 99 +- password.php | 121 +-- resize/resize.php | 42 +- simpla/BackupAdmin.php | 285 +++-- simpla/BlogAdmin.php | 147 ++- simpla/BrandAdmin.php | 151 ++- simpla/BrandsAdmin.php | 88 +- simpla/CategoriesAdmin.php | 119 +-- simpla/CategoryAdmin.php | 163 ++- simpla/CommentsAdmin.php | 222 ++-- simpla/CouponAdmin.php | 90 +- simpla/CouponsAdmin.php | 123 ++- simpla/CurrencyAdmin.php | 209 ++-- simpla/DeliveriesAdmin.php | 90 +- simpla/DeliveryAdmin.php | 103 +- simpla/ExportAdmin.php | 23 +- simpla/ExportUsersAdmin.php | 39 +- simpla/FeatureAdmin.php | 83 +- simpla/FeaturesAdmin.php | 121 +-- simpla/FeedbacksAdmin.php | 80 +- simpla/GroupAdmin.php | 77 +- simpla/GroupsAdmin.php | 42 +- simpla/ImagesAdmin.php | 167 ++- simpla/ImportAdmin.php | 244 +++-- simpla/IndexAdmin.php | 319 +++--- simpla/LicenseAdmin.php | 84 +- simpla/ManagerAdmin.php | 98 +- simpla/ManagersAdmin.php | 54 +- simpla/OrderAdmin.php | 486 ++++----- simpla/OrdersAdmin.php | 271 +++-- simpla/OrdersLabelAdmin.php | 65 +- simpla/OrdersLabelsAdmin.php | 67 +- simpla/PageAdmin.php | 112 +- simpla/PagesAdmin.php | 99 +- simpla/PaymentMethodAdmin.php | 111 +- simpla/PaymentMethodsAdmin.php | 88 +- simpla/PostAdmin.php | 102 +- simpla/ProductAdmin.php | 729 ++++++------- simpla/ProductsAdmin.php | 523 +++++---- simpla/SettingsAdmin.php | 171 ++- simpla/StatsAdmin.php | 8 +- simpla/StylesAdmin.php | 136 ++- simpla/TemplatesAdmin.php | 136 ++- simpla/ThemeAdmin.php | 237 +++-- simpla/UserAdmin.php | 123 +-- simpla/UsersAdmin.php | 143 +-- simpla/ajax/add_order_product.php | 123 +-- simpla/ajax/export.php | 383 ++++--- simpla/ajax/export_users.php | 199 ++-- simpla/ajax/get_features.php | 69 +- simpla/ajax/get_images.php | 92 +- simpla/ajax/get_info.php | 341 +++--- simpla/ajax/import.php | 706 ++++++------ simpla/ajax/options_autocomplete.php | 50 +- simpla/ajax/save_style.php | 72 +- simpla/ajax/save_template.php | 72 +- simpla/ajax/search_orders.php | 35 +- simpla/ajax/search_products.php | 81 +- simpla/ajax/search_users.php | 53 +- simpla/ajax/stat/stat.php | 38 +- simpla/ajax/update_object.php | 164 +-- simpla/cml/1c_exchange.php | 1474 +++++++++++++------------- simpla/index.php | 44 +- simpla/phpinfo.php | 1 - sitemap.php | 67 +- view/BlogView.php | 289 +++-- view/CartView.php | 317 +++--- view/FeedbackView.php | 96 +- view/IndexView.php | 127 +-- view/LoginView.php | 158 ++- view/MainView.php | 19 +- view/OrderView.php | 301 +++--- view/PageView.php | 27 +- view/ProductView.php | 314 +++--- view/ProductsView.php | 397 ++++--- view/RegisterView.php | 82 +- view/UserView.php | 91 +- view/View.php | 567 +++++----- yandex.php | 47 +- 81 files changed, 6923 insertions(+), 7241 deletions(-) diff --git a/ajax/cart.php b/ajax/cart.php index 2883de5..d005c41 100755 --- a/ajax/cart.php +++ b/ajax/cart.php @@ -1,34 +1,35 @@ -cart->add_item($this->request->get('variant', 'integer'), $this->request->get('amount', 'integer')); - $cart = $this->cart->get_cart(); - $this->design->assign('cart', $cart); - - $currencies = $this->money->get_currencies(array('enabled'=>1)); - if(isset($_SESSION['currency_id'])) - $currency = $this->money->get_currency($_SESSION['currency_id']); - else - $currency = reset($currencies); - - $this->design->assign('currency', $currency); - - return $this->design->fetch('cart_informer.tpl'); - } - } - - $cart_ajax = new CartAjax(); - $result = $cart_ajax->fetch(); - - header("Content-type: application/json; charset=UTF-8"); - header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); - header("X-Robots-Tag: noindex"); - header("Pragma: no-cache"); - header("Expires: -1"); - print json_encode($result); - exit; +cart->add_item($this->request->get('variant', 'integer'), $this->request->get('amount', 'integer')); + $cart = $this->cart->get_cart(); + $this->design->assign('cart', $cart); + + $currencies = $this->money->get_currencies(array('enabled'=>1)); + if (isset($_SESSION['currency_id'])) { + $currency = $this->money->get_currency($_SESSION['currency_id']); + } else { + $currency = reset($currencies); + } + + $this->design->assign('currency', $currency); + + return $this->design->fetch('cart_informer.tpl'); + } + } + + $cart_ajax = new CartAjax(); + $result = $cart_ajax->fetch(); + + header("Content-type: application/json; charset=UTF-8"); + header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); + header("X-Robots-Tag: noindex"); + header("Pragma: no-cache"); + header("Expires: -1"); + print json_encode($result); + exit; diff --git a/ajax/search_products.php b/ajax/search_products.php index c6f03cc..f0ae94a 100755 --- a/ajax/search_products.php +++ b/ajax/search_products.php @@ -1,55 +1,54 @@ -suggestions = array(); - $result->query = $this->request->get('query', 'string'); - - if(!empty($result->query)) - { - $kw = $this->db->escape($result->query); - - $this->db->query("SELECT p.id, p.name, i.filename as image FROM __products p - LEFT JOIN __images i ON i.product_id=p.id AND i.position=(SELECT MIN(position) FROM __images WHERE product_id=p.id LIMIT 1) - WHERE (p.name LIKE '%$kw%' OR p.meta_keywords LIKE '%$kw%' OR p.id in (SELECT product_id FROM __variants WHERE sku LIKE '%$kw%')) - AND visible=1 - GROUP BY p.id - ORDER BY p.name - LIMIT ?", $this->limit); - $products = $this->db->results(); - - $suggestions = array(); - - foreach($products as $product) - { - $suggestion = new stdClass(); - - if(!empty($product->image)) - $product->image = $this->design->resize_modifier($product->image, 35, 35); - - $suggestion->value = $product->name; - $suggestion->data = $product; - $result->suggestions[] = $suggestion; - } - } - - - return $result; - } - } - - $cart_ajax = new SearchProductsAjax(); - $result = $cart_ajax->fetch(); - - header("Content-type: application/json; charset=UTF-8"); - header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); - header("X-Robots-Tag: noindex, noarchive, nosnippet"); - header("Pragma: no-cache"); - header("Expires: -1"); - print json_encode($result); - exit; +suggestions = array(); + $result->query = $this->request->get('query', 'string'); + + if (!empty($result->query)) { + $kw = $this->db->escape($result->query); + + $this->db->query("SELECT p.id, p.name, i.filename as image FROM __products p + LEFT JOIN __images i ON i.product_id=p.id AND i.position=(SELECT MIN(position) FROM __images WHERE product_id=p.id LIMIT 1) + WHERE (p.name LIKE '%$kw%' OR p.meta_keywords LIKE '%$kw%' OR p.id in (SELECT product_id FROM __variants WHERE sku LIKE '%$kw%')) + AND visible=1 + GROUP BY p.id + ORDER BY p.name + LIMIT ?", $this->limit); + $products = $this->db->results(); + + $suggestions = array(); + + foreach ($products as $product) { + $suggestion = new stdClass(); + + if (!empty($product->image)) { + $product->image = $this->design->resize_modifier($product->image, 35, 35); + } + + $suggestion->value = $product->name; + $suggestion->data = $product; + $result->suggestions[] = $suggestion; + } + } + + + return $result; + } + } + + $cart_ajax = new SearchProductsAjax(); + $result = $cart_ajax->fetch(); + + header("Content-type: application/json; charset=UTF-8"); + header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); + header("X-Robots-Tag: noindex, noarchive, nosnippet"); + header("Pragma: no-cache"); + header("Expires: -1"); + print json_encode($result); + exit; diff --git a/index.php b/index.php index 4addb47..6dd2034 100755 --- a/index.php +++ b/index.php @@ -19,70 +19,71 @@ $view = new IndexView(); -if(isset($_GET['logout'])) -{ - header('WWW-Authenticate: Basic realm="Simpla CMS"'); - header('HTTP/1.0 401 Unauthorized'); - unset($_SESSION['admin']); +if (isset($_GET['logout'])) { + header('WWW-Authenticate: Basic realm="Simpla CMS"'); + header('HTTP/1.0 401 Unauthorized'); + unset($_SESSION['admin']); } // Если все хорошо -if(($res = $view->fetch()) !== false) -{ - // Выводим результат - header("Content-type: text/html; charset=UTF-8"); - print $res; - - // Сохраняем последнюю просмотренную страницу в переменной $_SESSION['last_visited_page'] - if(empty($_SESSION['last_visited_page']) || empty($_SESSION['current_page']) || $_SERVER['REQUEST_URI'] !== $_SESSION['current_page']) - { - if(!empty($_SESSION['current_page']) && !empty($_SESSION['last_visited_page']) && $_SESSION['last_visited_page'] !== $_SESSION['current_page']) - $_SESSION['last_visited_page'] = $_SESSION['current_page']; - $_SESSION['current_page'] = $_SERVER['REQUEST_URI']; - } -} -else -{ - // Иначе страница об ошибке - header("http/1.0 404 not found"); - - // Подменим переменную GET, чтобы вывести страницу 404 - $_GET['page_url'] = '404'; - $_GET['module'] = 'PageView'; - print $view->fetch(); +if (($res = $view->fetch()) !== false) { + // Выводим результат + header("Content-type: text/html; charset=UTF-8"); + print $res; + + // Сохраняем последнюю просмотренную страницу в переменной $_SESSION['last_visited_page'] + if (empty($_SESSION['last_visited_page']) || empty($_SESSION['current_page']) || $_SERVER['REQUEST_URI'] !== $_SESSION['current_page']) { + if (!empty($_SESSION['current_page']) && !empty($_SESSION['last_visited_page']) && $_SESSION['last_visited_page'] !== $_SESSION['current_page']) { + $_SESSION['last_visited_page'] = $_SESSION['current_page']; + } + $_SESSION['current_page'] = $_SERVER['REQUEST_URI']; + } +} else { + // Иначе страница об ошибке + header("http/1.0 404 not found"); + + // Подменим переменную GET, чтобы вывести страницу 404 + $_GET['page_url'] = '404'; + $_GET['module'] = 'PageView'; + print $view->fetch(); } $p=11; $g=2; $x=7; $r = ''; $s = $x; $bs = explode(' ', $view->config->license); -foreach($bs as $bl){ - for($i=0, $m=''; $idomains, $l->expiration, $l->comment) = explode('#', $r, 3); $l->domains = explode(',', $l->domains); $h = getenv("HTTP_HOST"); -if(substr($h, 0, 4) == 'www.') $h = substr($h, 4); -if((!in_array($h, $l->domains) || (strtotime($l->expiration)expiration!='*'))) -{ - print "Лицензия недействительнаСкрипт интернет-магазина Simpla"; +if (substr($h, 0, 4) == 'www.') { + $h = substr($h, 4); +} +if ((!in_array($h, $l->domains) || (strtotime($l->expiration)expiration!='*'))) { + print "Лицензия недействительнаСкрипт интернет-магазина Simpla"; } // Отладочная информация -if(1) -{ - print ""; +if (1) { + print ""; } diff --git a/password.php b/password.php index 768125e..a24e925 100755 --- a/password.php +++ b/password.php @@ -34,52 +34,46 @@ $simpla = new Simpla(); // Если пришли по ссылке из письма -if($c = $simpla->request->get('code')) -{ - // Код не совпадает - прекращяем работу - if(empty($_SESSION['admin_password_recovery_code']) || empty($c) || $_SESSION['admin_password_recovery_code'] !== $c) - { - header('Location:password.php'); - exit(); - } - - // IP не совпадает - прекращяем работу - if(empty($_SESSION['admin_password_recovery_ip'])|| empty($_SERVER['REMOTE_ADDR']) || $_SESSION['admin_password_recovery_ip'] !== $_SERVER['REMOTE_ADDR']) - { - header('Location:password.php'); - exit(); - } - - // Если запостили пароль - if($new_password = $simpla->request->post('new_password')) - { - // Файл с паролями - $passwd_file = $simpla->config->root_dir.'simpla/.passwd'; - - // Удаляем из сесси код, чтобы больше никто не воспользовался ссылкой - unset($_SESSION['admin_password_recovery_code']); - unset($_SESSION['admin_password_recovery_ip']); - - // Если в файлы запрещена запись - предупреждаем об этом - if(!is_writable($passwd_file)) - { - print " +if ($c = $simpla->request->get('code')) { + // Код не совпадает - прекращяем работу + if (empty($_SESSION['admin_password_recovery_code']) || empty($c) || $_SESSION['admin_password_recovery_code'] !== $c) { + header('Location:password.php'); + exit(); + } + + // IP не совпадает - прекращяем работу + if (empty($_SESSION['admin_password_recovery_ip'])|| empty($_SERVER['REMOTE_ADDR']) || $_SESSION['admin_password_recovery_ip'] !== $_SERVER['REMOTE_ADDR']) { + header('Location:password.php'); + exit(); + } + + // Если запостили пароль + if ($new_password = $simpla->request->post('new_password')) { + // Файл с паролями + $passwd_file = $simpla->config->root_dir.'simpla/.passwd'; + + // Удаляем из сесси код, чтобы больше никто не воспользовался ссылкой + unset($_SESSION['admin_password_recovery_code']); + unset($_SESSION['admin_password_recovery_ip']); + + // Если в файлы запрещена запись - предупреждаем об этом + if (!is_writable($passwd_file)) { + print " Восстановление пароля администратора Файл /simpla/.passwd недоступен для записи. Вам нужно зайти по FTP и изменить права доступа к этому файлу, после чего повторить процедуру восстановления пароля. "; - } - else - { - // Новый логин и пароль - $new_login = $simpla->request->post('new_login'); - $new_password = $simpla->request->post('new_password'); - if(!$simpla->managers->update_manager($new_login, array('password'=>$new_password))) - $simpla->managers->add_manager(array('login'=>$new_login, 'password'=>$new_password)); - - print " + } else { + // Новый логин и пароль + $new_login = $simpla->request->post('new_login'); + $new_password = $simpla->request->post('new_password'); + if (!$simpla->managers->update_manager($new_login, array('password'=>$new_password))) { + $simpla->managers->add_manager(array('login'=>$new_login, 'password'=>$new_password)); + } + + print " Восстановление пароля администратора Новый пароль установлен @@ -88,12 +82,10 @@ Перейти в панель управления "; - } - } - else - { - // Форма указалия нового логина и пароля - print " + } + } else { + // Форма указалия нового логина и пароля + print " Восстановление пароля администратора @@ -103,11 +95,9 @@
Файл /simpla/.passwd недоступен для записи.
Вам нужно зайти по FTP и изменить права доступа к этому файлу, после чего повторить процедуру восстановления пароля.
Новый пароль установлен @@ -88,12 +82,10 @@ Перейти в панель управления
Введите email администратора @@ -118,25 +108,22 @@