# easy-code-manager/10.55/easy-code-manager.php

FluentSnippets – High-Performance Code Snippets, Header &amp; Footer Code, Custom CSS &amp; PHP Code Manager, version 10.55. 71 lines.

- Page: https://pluginprobe.com/plugins/easy-code-manager/10.55/code/easy-code-manager.php
- Raw: https://pluginprobe.com/plugins/easy-code-manager/10.55/raw/easy-code-manager.php
- Modified: 2026-06-27T22:10:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/easy-code-manager/10.55/code/easy-code-manager.php#L10-L20`.

```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.55
 * 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.55');

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) {
            if (strpos($class, 'FluentSnippets\\') !== 0) {
                return;
            }

            $file = str_replace(
                ['FluentSnippets', '\\', '/App/'],
                ['', DIRECTORY_SEPARATOR, 'app/'],
                $class
            );

            require(FLUENT_SNIPPETS_PLUGIN_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();

```
