Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP7 Decoder for ionCube Encoder)
- *
- * @ Version : 4.1.0.1
- * @ Author : DeZender
- * @ Release on : 29.08.2020
- * @ Official site : http://DeZender.Net
- *
- */
- parent::initController($request, $response, $logger);
- $license_key = LICENSE_KEY;
- if (!function_exists('lisansimo_check')) {
- function lisansimo_check($license_key, $lisansimo_server, $time)
- {
- $stime = time();
- if (!isset($_COOKIE['lisansimo']) || ($time < ($stime - (int) $_COOKIE['lisansimo']))) {
- unset($_COOKIE['lisansimo']);
- setcookie('lisansimo', $stime);
- }
- if (($time == 0) || !isset($_COOKIE['lisansimo']) || (($_COOKIE['lisansimo'] - $stime) == 0)) {
- $lisansimo_ch = curl_init();
- .....................................................................
- ..................................
- ..............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement