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 namespace Elementor\App\Modules\KitLibrary; use Elementor\Core\Admin\Menu\Interface..

Decoded Output download

<?php
namespace Elementor\App\Modules\KitLibrary;

use Elementor\Core\Admin\Menu\Interfaces\Admin_Menu_Item;
use Elementor\TemplateLibrary\Source_Local;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

class Kit_Library_Menu_Item implements Admin_Menu_Item {

	public function is_visible() {
		return true;
	}

	public function get_parent_slug() {
		return Source_Local::ADMIN_MENU_SLUG;
	}

	public function get_label() {
		return esc_html__( 'Kit Library', 'elementor' );
	}

	public function get_capability() {
		return 'manage_options';
	}
}
 ?>

Did this file decode correctly?

Original Code

<?php
namespace Elementor\App\Modules\KitLibrary;

use Elementor\Core\Admin\Menu\Interfaces\Admin_Menu_Item;
use Elementor\TemplateLibrary\Source_Local;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

class Kit_Library_Menu_Item implements Admin_Menu_Item {

	public function is_visible() {
		return true;
	}

	public function get_parent_slug() {
		return Source_Local::ADMIN_MENU_SLUG;
	}

	public function get_label() {
		return esc_html__( 'Kit Library', 'elementor' );
	}

	public function get_capability() {
		return 'manage_options';
	}
}

Function Calls

None

Variables

None

Stats

MD5 0090080e112f1fda001b06e3e29bf973
Eval Count 0
Decode Time 91 ms