Advertisement
Guest User

Untitled

a guest
Sep 5th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 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.0.9.0
  8. * @ Author : DeZender
  9. * @ Release on : 08.08.2019
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. namespace ARP\Ajax;
  15.  
  16. class License
  17. {
  18. static public function get()
  19. {
  20. $license = \ARP\Settings\License::init();
  21. return ['code' => $license->code()];
  22. }
  23.  
  24. static public function set($post)
  25. {
  26. if (!isset($post['code'])) {
  27. throw new \Exception(__('Undefined form data', 'arp'));
  28. }
  29.  
  30. $license = \ARP\Settings\License::init();
  31. ..............................................................
  32. .................................
  33. ...........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement