Advertisement
Guest User

Untitled

a guest
Oct 26th, 2020
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP7 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 4.1.0.1
  8. * @ Author : DeZender
  9. * @ Release on : 29.08.2020
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. if (!defined('ABSPATH')) {
  15. exit();
  16. }
  17.  
  18. $hjdevices = get_option('hjdevices', 'disable');
  19. $hjads = get_option('hjads', 'disable');
  20. $afterpages = get_option('afterpages', '0');
  21. $hjupload = get_option('hjupload', 'disable');
  22. $color = trim(get_option('color', ''));
  23. $size = trim(get_option('size', ''));
  24. $classes = trim(get_option('iconclass', ''));
  25. $iconsize = trim(get_option('iconsize', ''));
  26. $align = trim(get_option('align', ''));
  27. $adcode = stripslashes_deep(get_option('adcode', 'Advertisements'));
  28. $htmlcode1 = stripslashes_deep(get_option('htmlcode1', 'Advertisements'));
  29. $htmlcode2 = stripslashes_deep(get_option('htmlcode2', 'Advertisements'));
  30. $dvice = trim(get_option('dvice', ''));
  31. $Double = trim(get_option('Double', ''));
  32. $nexturl = trim(get_option('nexturl', ''));
  33. $prevurl = get_option('prevurl', '');
  34. $rand = get_option('rand', '');
  35. $show_next_post = trim(get_option('shownextbutton', ''));
  36. $postid = get_the_ID();
  37. $next_post = get_adjacent_post(false, '', false);
  38. $sharebutn = get_option('sharebutn', 'disable');
  39. $delayads = get_option('delayads', '');
  40. $hideads = get_option('hideads', 'disable');
  41. $adupcontent = stripslashes_deep(get_option('adupcontent', 'Advertisements'));
  42. $cookietime = get_option('cookietime', '1');
  43. $hjsocial = get_option('hjsocial', 'disable');
  44. $sharingbutn = get_option('sharingbutn ', 'sharethis');
  45. $ksessionalive = get_option('ksessionalive');
  46. $current_link = get_the_permalink($post->ID);
  47.  
  48. if (isset($next_post->ID)) {
  49. $next_post_link_url = get_permalink($next_post->ID);
  50. }
  51. else {
  52. $next_post_link_url = 'last';
  53. }
  54.  
  55. $HJSP->kickProxy();
  56.  
  57. if ($Double == 'single') {
  58. $hiddenarrow = 'hiddenarrow';
  59. }
  60. else {
  61. $hiddenarrow = '';
  62. }
  63.  
  64. $ex = explode(',', $classes);
  65. $left_class = $ex[0];
  66. $right_class = $ex[1];
  67.  
  68. if (get_option('HJS_PAGE_SPRATE') == 'auto') {
  69. $autoClass = 'auto';
  70. ...................................................................
  71. .............................................
  72. ....................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement