┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/var/www/html/olizo-metro16/wp-content/plugins/easy-code-manager
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: easy-code-manager.php
<?php /** * Plugin Name: Fluent Snippets * Plugin URI: https://fluentsnippets.com * Description: Super Fast File Based Native Code Snippets (header / footer codes) Manager for WordPress * Author: Fluent Snippets * Author URI: https://fluentsnippets.com * License: GPL-2.0-or-later * License URI: https://www.gnu.org/licenses/gpl-2.0.html * Text Domain: easy-code-manager * Version: 10.53 * Requires PHP: 7.3 * Requires at least: 6.0 * Domain Path: /language */ // Exit if accessed directly. if (!defined('ABSPATH')) { return; } if (defined('FLUENT_SNIPPETS_PLUGIN_PATH')) { return; } define('FLUENT_SNIPPETS_PLUGIN_PATH', plugin_dir_path(__FILE__)); define('FLUENT_SNIPPETS_PLUGIN_URL', plugin_dir_url(__FILE__)); define('FLUENT_SNIPPETS_PLUGIN_VERSION', '10.53'); class FluentCodeSnippetsBoot { public function boot() { $this->autoLoad(); add_action('init', function () { load_plugin_textdomain('easy-code-manager', false, 'fluent-snippets/language'); }); } private function autoLoad() { spl_autoload_register(function ($class) { $match = 'FluentSnippets'; if (!preg_match("/\b{$match}\b/", $class)) { return; } $path = plugin_dir_path(__FILE__); $file = str_replace( ['FluentSnippets', '\\', '/App/'], ['', DIRECTORY_SEPARATOR, 'app/'], $class ); require(trailingslashit($path) . trim($file, '/') . '.php'); }); add_action('plugins_loaded', function () { add_action('rest_api_init', function () { require_once FLUENT_SNIPPETS_PLUGIN_PATH . 'app/Http/routes.php'; }); }); require_once FLUENT_SNIPPETS_PLUGIN_PATH . 'app/Hooks/hooks.php'; register_deactivation_hook(__FILE__, [\FluentSnippets\App\Helpers\Helper::class, 'handleDeactivate']); } } (new FluentCodeSnippetsBoot())->boot();
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📁 app/
DIR
—
2026-05-08 08:09
📁 dist/
DIR
—
2026-05-08 08:09
📁 language/
DIR
—
2026-05-08 08:09
📄 easy-code-manager.php
PHP
2 KB
2026-05-08 08:09
EDIT
📄 index.php
PHP
28 B
2026-05-08 08:09
EDIT
📄 readme.txt
TXT
11.1 KB
2026-05-08 08:09
EDIT