Guest User

Untitled

a guest
Aug 5th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 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.0.7.0
  8. * @ Author : DeZender
  9. * @ Release on : 22.06.2017
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. namespace Blesta\System\BALicense;
  15.  
  16.  
  17. class Licensing
  18. {
  19. /**
  20. * @var string The path
  21. */
  22. private $path = null;
  23. /**
  24. * @var string The key_name
  25. */
  26. private $key_name = null;
  27. /**
  28. * @var string The license key
  29. */
  30. private $license_key = null;
  31. /**
  32. * @var string The public key
  33. */
  34. private $public_key = null;
  35.  
  36. /**
  37. * Initializes the license class
  38. *
  39. * @param string $path The full path to plugin/module
  40. */
  41. public function __construct($path = NULL)
  42. {
  43. if (is_null( $path )) {
  44. throw new Exception( 'The License Class has been failed ...!!!' );
  45. }
  46.  
  47. $this->path = $path;
  48. Loader::loadComponents( $this, array( 'Input' ) );
  49. .................................................................
  50. .................................
  51. ...............
Advertisement
Add Comment
Please, Sign In to add comment