# fluent-cart/1.5.2/app/Hooks/Handlers/FluentCartHandler.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.5.2. 25 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.5.2/code/app/Hooks/Handlers/FluentCartHandler.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.5.2/raw/app/Hooks/Handlers/FluentCartHandler.php
- Modified: 2025-10-14T16:36:46+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/fluent-cart/1.5.2/code/app/Hooks/Handlers/FluentCartHandler.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Hooks\Handlers;

use FluentCart\App\App;

class FluentCartHandler
{
    protected $app = null;

    public function register()
    {
        add_action('init', function (){
            $this->app = App::getInstance();
            $this->init();
        });
    }

    public function init()
    {
        //$this->checkBuyNowBeforeLoadingTemplates();
        //TemplateFactory::init($this->app);
    }
}

```
