Advertisement
Guest User

Untitled

a guest
Mar 28th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. <?php
  2. /*
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 3.5.0.0
  8. * @ Author : DeZender
  9. * @ Release on : 22.06.2018
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. namespace ns;
  15.  
  16. define('DEFINE_MY_ACCESS', true);
  17. define('CLIENT', true);
  18. define('SSLON', true);
  19. require 'comm.php';
  20. require 'includes/fun.inc.php';
  21. require 'includes/client.area.inc.php';
  22. $currentpage = 'index';
  23. $action = preg_replace('/[^a-z]/i', '', $action);
  24. $sortby = preg_replace('/[^a-z]/i', '', $sortby);
  25. $prod = preg_replace('/[^0-9]/i', '', $prod);
  26. $viewmode = preg_replace('/[^a-z]/i', '', $viewmode);
  27. $group = preg_replace('/[^0-9a-zA-Z]/i', '', $group);
  28. $serviceId = preg_replace('/[^0-9a-zA-Z]/i', '', $serviceId);
  29. $manufacture = preg_replace('/[^0-9a-zA-Z]/i', '', $manufacture);
  30. $list = preg_replace('/[^0-9a-zA-Z,]/i', '', $list);
  31. global $cmslink;
  32.  
  33. if ($action == 'bestdeal' && $prod != '') {
  34. $gl = mysql_fetch_array(mysql_query("select link,type from tbl_generatedlink where id='" . $prod . "'"));
  35.  
  36. if ($gl['type'] == 'imei') {
  37. $action = 'imeideal';
  38. }
  39.  
  40. $list = $gl['link'];
  41. }
  42.  
  43. if ($viewmode != '') {
  44. $_SESSION['viewmode'] = $viewmode;
  45. }
  46.  
  47. if ($_SESSION['viewmode']) {
  48. $tempalte_ver['viewmode'] = $_SESSION['viewmode'];
  49. }
  50.  
  51. $tempalte_ver['sortby'] = $sortby;
  52. $tempalte_ver['group'] = $group;
  53.  
  54. if ($config['Index_page_redirect'] != '') {
  55. $Index_page_redirect = $config['Index_page_redirect'];
  56. header('Location: ' . $Index_page_redirect);
  57. echo "<script>location.href='" . $Index_page_redirect . "';</script>";
  58. }
  59.  
  60. $pagetitle = $config['config_site_name'];
  61. $_nav = '<a href="index.php">' . $lng_languag['home'] . '</a>';
  62. $templatefile = 'index';
  63. $pageicon = '';
  64. installclient($pagetitle, $pageicon, $_nav);
  65. $news = mysql_num_rows(mysql_query('select id from tbl_blogposts'));
  66. $tempalte_ver['newsitem'] = $news;
  67.  
  68. if ($config['shoppingcart']) {
  69. if ($action == 'wishlist') {
  70. } else {
  71. if ($action == 'bestdeal') {
  72. require_once 'includes/products.fun.php';
  73. .................................................
  74. .......................
  75. .......
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement