Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php if (!stristr( htmlentities($_SERVER['SERVER_NAME']), "mekanbir.com" ) ) { echo ..

Decoded Output download

<?php 
if (!stristr( htmlentities($_SERVER['SERVER_NAME']), "mekanbir.com" ) )  
{  
echo "Bu Lisans, Bu Alan Adnda Kullanlamaz!By iM_MoRTaL";  
exit( );   
} 
function royal_elementor_kit_setup() { 
 
	// Add default posts and comments RSS feed links to head 
	add_theme_support( 'automatic-feed-links' ); 
 
	// Let WordPress manage the document title for us 
	add_theme_support( 'title-tag' ); 
 
	// Enable support for Post Thumbnails on posts and pages 
	add_theme_support( 'post-thumbnails' ); 
 
	// Custom Logo 
	add_theme_support( 'custom-logo', [ 
		'height'      => 100, 
		'width'       => 350, 
		'flex-height' => true, 
		'flex-width'  => true, 
	] ); 
 
	add_theme_support( 'custom-header' ); 
 
	// Add theme support for Custom Background. 
	add_theme_support( 'custom-background', ['default-color' => ''] ); 
 
	// Set the default content width. 
	$GLOBALS['content_width'] = 960; 
 
	// This theme uses wp_nav_menu() in one location 
	register_nav_menus( array( 
		'main' => __( 'Main Menu', 'royal-elementor-kit' ), 
	) ); 
 
	// Switch default core markup for search form, comment form, and comments to output valid HTML5 
	add_theme_support( 'html5', array( 
		'comment-form', 
		'comment-list', 
		'gallery', 
		'caption', 
	) ); 
 
	// Gutenberg Embeds 
	add_theme_support( 'responsive-embeds' ); 
 
	// Gutenberg Widge Images 
	add_theme_support( 'align-wide' ); 
 
 
	// WooCommerce in general. 
	add_theme_support( 'woocommerce' ); 
 
	// zoom. 
	add_theme_support( 'wc-product-gallery-zoom' ); 
	// lightbox. 
	add_theme_support( 'wc-product-gallery-lightbox' ); 
	// swipe. 
	add_theme_support( 'wc-product-gallery-slider' ); 
} 
 
add_action( 'after_setup_theme', 'royal_elementor_kit_setup' ); 
 
/* 
** Enqueue scripts and styles 
*/ 
function royal_elementor_kit_scripts() { 
 
	// Theme Stylesheet 
	wp_enqueue_style( 'royal-elementor-kit-style', get_stylesheet_uri(), array(), '1.0' ); 
 
	// Comment reply link 
	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { 
		wp_enqueue_script( 'comment-reply' ); 
	} 
	 
} 
add_action( 'wp_enqueue_scripts', 'royal_elementor_kit_scripts' ); 
 
 
/* 
** Notices 
*/ 
require_once get_parent_theme_file_path( '/inc/activation/class-welcome-notice.php' ); 
require_once get_parent_theme_file_path( '/inc/activation/class-rating-notice.php' ); 
 
add_action( 'after_switch_theme', 'rek_activation_time'); 
add_action('after_setup_theme', 'rek_activation_time'); 
     
function rek_activation_time() { 
	if ( false === get_option( 'rek_activation_time' ) ) { 
		add_option( 'rek_activation_time', strtotime('now') ); 
	} 
} ?>

Did this file decode correctly?

Original Code

<?php
if (!stristr( htmlentities($_SERVER['SERVER_NAME']), "mekanbir.com" ) ) 
{ 
echo "Bu Lisans, Bu Alan Adnda Kullanlamaz!By iM_MoRTaL"; 
exit( );  
}
function royal_elementor_kit_setup() {

	// Add default posts and comments RSS feed links to head
	add_theme_support( 'automatic-feed-links' );

	// Let WordPress manage the document title for us
	add_theme_support( 'title-tag' );

	// Enable support for Post Thumbnails on posts and pages
	add_theme_support( 'post-thumbnails' );

	// Custom Logo
	add_theme_support( 'custom-logo', [
		'height'      => 100,
		'width'       => 350,
		'flex-height' => true,
		'flex-width'  => true,
	] );

	add_theme_support( 'custom-header' );

	// Add theme support for Custom Background.
	add_theme_support( 'custom-background', ['default-color' => ''] );

	// Set the default content width.
	$GLOBALS['content_width'] = 960;

	// This theme uses wp_nav_menu() in one location
	register_nav_menus( array(
		'main' => __( 'Main Menu', 'royal-elementor-kit' ),
	) );

	// Switch default core markup for search form, comment form, and comments to output valid HTML5
	add_theme_support( 'html5', array(
		'comment-form',
		'comment-list',
		'gallery',
		'caption',
	) );

	// Gutenberg Embeds
	add_theme_support( 'responsive-embeds' );

	// Gutenberg Widge Images
	add_theme_support( 'align-wide' );


	// WooCommerce in general.
	add_theme_support( 'woocommerce' );

	// zoom.
	add_theme_support( 'wc-product-gallery-zoom' );
	// lightbox.
	add_theme_support( 'wc-product-gallery-lightbox' );
	// swipe.
	add_theme_support( 'wc-product-gallery-slider' );
}

add_action( 'after_setup_theme', 'royal_elementor_kit_setup' );

/*
** Enqueue scripts and styles
*/
function royal_elementor_kit_scripts() {

	// Theme Stylesheet
	wp_enqueue_style( 'royal-elementor-kit-style', get_stylesheet_uri(), array(), '1.0' );

	// Comment reply link
	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
		wp_enqueue_script( 'comment-reply' );
	}
	
}
add_action( 'wp_enqueue_scripts', 'royal_elementor_kit_scripts' );


/*
** Notices
*/
require_once get_parent_theme_file_path( '/inc/activation/class-welcome-notice.php' );
require_once get_parent_theme_file_path( '/inc/activation/class-rating-notice.php' );

add_action( 'after_switch_theme', 'rek_activation_time');
add_action('after_setup_theme', 'rek_activation_time');
    
function rek_activation_time() {
	if ( false === get_option( 'rek_activation_time' ) ) {
		add_option( 'rek_activation_time', strtotime('now') );
	}
}

Function Calls

None

Variables

None

Stats

MD5 ea7590773277ffd942287277ceb1308b
Eval Count 0
Decode Time 60 ms