Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 3.0.8.0
- * @ Author : DeZender
- * @ Release on : 25.09.2017
- * @ Official site : http://DeZender.Net
- *
- */
- final class mweb_theme_active
- {
- private static $RTL_THEME_SLUG = 'mwebdglandwp';
- private static $WEOWPS_RTL_OIEKS = 'd0a7e7997b6d5fcd55f4b5c32611b81';
- private static $RTL_OAUTH_PID = 49341;
- private static $RTL_OAUTH_API = 'rtl4c12e462a43dfe8e80c6fbf2378c9a';
- private static $RTL_OPTIONS_NAME = 'mwebdglandwp_rtl_license_options';
- private static $RTL_SECURE_ACTIVE = 'rtl4c12e462a43dfe8e80c6fbf2378c9amwdigilandworkesactive';
- private static $instance = null;
- public static function get_instance()
- {
- if (self::$instance == NULL) {
- self::$instance = new mweb_theme_active( );
- }
- return self::$instance;
- }
- private function __construct()
- {
- add_action( 'admin_menu', array(
- $this,
- 'rtl_oauth_license_options'
- ) );
- if ((@$_GET['page'] !== 'activator') && (@$_GET['page'] !== 'deactivator')) {
- add_action( 'admin_notices', array(
- $this,
- 'sample_admin_notice__success'
- ) );
- }
- }
- public function mc_encrypt($encrypt, $key)
- {
- $encrypt = serialize( $encrypt );
- $iv = mcrypt_create_iv( mcrypt_get_iv_size( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_CBC ), MCRYPT_DEV_URANDOM );
- $key = pack( 'H*', $key );
- .........................................................................
- ..................................
- ...........
Advertisement
Add Comment
Please, Sign In to add comment