Guest User

Untitled

a guest
Oct 31st, 2020
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 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. namespace Sandev;
  15.  
  16. class ViewsTop
  17. {
  18. private $days = 30;
  19. private $licensed;
  20.  
  21. public function __construct(int $days = 30)
  22. {
  23. $this->days = (int) $days;
  24. $this->init();
  25. }
  26.  
  27. /**
  28. * Перенос данных из таблицы dle_views в dle_views_top
  29. * Запускается в цикле из файла cron.php
  30. */
  31. public function updateViews(int $news_id, int $count = 0): void
  32. {
  33. global $db;
  34.  
  35. if (!$this->init()) {
  36. ................................................................
  37. ...................................
  38. .............
Add Comment
Please, Sign In to add comment