SILENT KILLERPanel

Current Path: > home > codekrsu > > shopceylon.store > wp-content > plugins > code-snippets > php


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//shopceylon.store/wp-content/plugins/code-snippets/php

NameTypeSizeLast ModifiedActions
admin-menus Directory - -
cloud Directory - -
export Directory - -
front-end Directory - -
rest-api Directory - -
settings Directory - -
views Directory - -
class-active-snippets.php File 1892 bytes February 14 2025 13:16:14.
class-admin.php File 10843 bytes February 14 2025 13:16:14.
class-contextual-help.php File 6388 bytes February 14 2025 13:16:14.
class-data-item.php File 6379 bytes February 14 2025 13:16:14.
class-db.php File 7870 bytes November 27 2024 21:28:50.
class-licensing.php File 314 bytes February 14 2025 13:16:14.
class-list-table.php File 38586 bytes February 14 2025 13:16:14.
class-plugin.php File 10009 bytes February 14 2025 13:16:14.
class-snippet.php File 13381 bytes February 14 2025 13:16:14.
class-upgrade.php File 6712 bytes February 14 2025 13:16:14.
class-validator.php File 7188 bytes November 27 2024 21:28:50.
class-welcome-api.php File 9762 bytes November 27 2024 21:52:46.
deactivation-notice.php File 1991 bytes November 27 2024 21:28:50.
editor.php File 3280 bytes November 06 2023 19:43:04.
load.php File 1464 bytes February 14 2025 13:16:14.
snippet-ops.php File 21480 bytes February 14 2025 13:16:14.
strings.php File 1848 bytes May 19 2023 18:41:32.
uninstall.php File 2129 bytes February 14 2025 13:16:14.

Reading File: /home/codekrsu//shopceylon.store/wp-content/plugins/code-snippets/php/load.php

<?php
/**
 * Initialise and load the plugin under the proper namespace.
 *
 * @package Code_Snippets
 */

namespace Code_Snippets;

/**
 * The version number for this release of the plugin.
 * This will later be used for upgrades and enqueuing files.
 *
 * This should be set to the 'Plugin Version' value defined
 * in the plugin header.
 *
 * @var string A PHP-standardized version number string.
 */
const PLUGIN_VERSION = CODE_SNIPPETS_VERSION;

/**
 * The full path to the main file of this plugin.
 *
 * This can later be used with functions such as
 * plugin_dir_path(), plugins_url() and plugin_basename()
 * to retrieve information about plugin paths.
 *
 * @var string
 */
const PLUGIN_FILE = CODE_SNIPPETS_FILE;

/**
 * Name of the group used for caching data.
 *
 * @var string
 */
const CACHE_GROUP = 'code_snippets';

/**
 * Namespace used for REST API endpoints.
 *
 * @var string
 */
const REST_API_NAMESPACE = 'code-snippets/v';

// Load dependencies with Composer.
require_once dirname( __DIR__ ) . '/vendor/autoload.php';

/**
 * Retrieve the instance of the main plugin class.
 *
 * @return Plugin
 * @since 2.6.0
 */
function code_snippets(): Plugin {
	static $plugin;

	if ( is_null( $plugin ) ) {
		$plugin = new Plugin( PLUGIN_VERSION, PLUGIN_FILE );
	}

	return $plugin;
}

code_snippets()->load_plugin();

// Execute the snippets once the plugins are loaded.
add_action( 'plugins_loaded', __NAMESPACE__ . '\execute_active_snippets', 1 );

SILENT KILLER Tool