Guest User

Untitled

a guest
Jan 28th, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 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.8.0
  8. * @ Author : DeZender
  9. * @ Release on : 25.09.2017
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. final class mweb_theme_active
  15. {
  16. private static $RTL_THEME_SLUG = 'mwebdglandwp';
  17. private static $WEOWPS_RTL_OIEKS = 'd0a7e7997b6d5fcd55f4b5c32611b81';
  18. private static $RTL_OAUTH_PID = 49341;
  19. private static $RTL_OAUTH_API = 'rtl4c12e462a43dfe8e80c6fbf2378c9a';
  20. private static $RTL_OPTIONS_NAME = 'mwebdglandwp_rtl_license_options';
  21. private static $RTL_SECURE_ACTIVE = 'rtl4c12e462a43dfe8e80c6fbf2378c9amwdigilandworkesactive';
  22. private static $instance = null;
  23.  
  24. public static function get_instance()
  25. {
  26. if (self::$instance == NULL) {
  27. self::$instance = new mweb_theme_active( );
  28. }
  29.  
  30. return self::$instance;
  31. }
  32.  
  33. private function __construct()
  34. {
  35. add_action( 'admin_menu', array(
  36. $this,
  37. 'rtl_oauth_license_options'
  38. ) );
  39.  
  40. if ((@$_GET['page'] !== 'activator') && (@$_GET['page'] !== 'deactivator')) {
  41. add_action( 'admin_notices', array(
  42. $this,
  43. 'sample_admin_notice__success'
  44. ) );
  45. }
  46. }
  47.  
  48. public function mc_encrypt($encrypt, $key)
  49. {
  50. $encrypt = serialize( $encrypt );
  51. $iv = mcrypt_create_iv( mcrypt_get_iv_size( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_CBC ), MCRYPT_DEV_URANDOM );
  52. $key = pack( 'H*', $key );
  53. .........................................................................
  54. ..................................
  55. ...........
Advertisement
Add Comment
Please, Sign In to add comment