# fluent-cart/1.5.3/app/Services/Renderer/CartDrawerRenderer.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.5.3. 188 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.5.3/code/app/Services/Renderer/CartDrawerRenderer.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.5.3/raw/app/Services/Renderer/CartDrawerRenderer.php
- Modified: 2026-02-04T13:17:58+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.3/code/app/Services/Renderer/CartDrawerRenderer.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Services\Renderer;

use FluentCart\Api\StoreSettings;
use FluentCart\App\Helpers\CartCheckoutHelper;
use FluentCart\Framework\Support\Arr;
use FluentCart\App\Vite;

class CartDrawerRenderer
{
    protected $cartItems;

    protected $storeSettings;

    protected $itemCount = 0;

    protected $cartRenderer = null;

    protected $defaultOpenCart = false;

    protected $isAdminBarEnabled = false;


    public function __construct($cartItems, $config = [])
    {
        $this->storeSettings = new StoreSettings();
        $this->cartItems = $cartItems;
        $this->itemCount = Arr::get($config, 'item_count') ?? 0;
        $this->defaultOpenCart = Arr::get($config, 'open_cart') ?? false;

        $this->isAdminBarEnabled = Arr::get($config, 'is_admin_bar_enabled') || is_admin_bar_showing() ?? false;


        $this->cartRenderer = new CartRenderer($cartItems);

    }

    public function render()
    {
        ?>

        <div class="fct-cart-drawer-container" data-fluent-cart-cart-drawer-container role="complementary"
             aria-label="<?php esc_attr_e('Shopping Cart Drawer', 'fluent-cart'); ?>">
            <div
                    class="fct-cart-drawer-overlay <?php echo esc_attr($this->defaultOpenCart ? 'active' : '') ?>"
                    data-fluent-cart-cart-drawer-overlay
                    tabindex="-1"
                    aria-hidden="<?php echo $this->defaultOpenCart ? 'false' : 'true'; ?>"
            ></div>

            <div
                    class="fct-cart-drawer <?php echo esc_attr($this->defaultOpenCart ? 'open' : '') ?> <?php echo esc_attr($this->isAdminBarEnabled ? 'admin_bar_enabled' : '') ?>"
                    data-fluent-cart-cart-drawer
                    role="dialog"
                    aria-modal="true"
                    aria-label="<?php esc_attr_e('Shopping Cart', 'fluent-cart'); ?>"
            >
                <?php $this->renderCartLoader(); ?>

                <?php $this->renderHeader(); ?>

                <?php $this->cartRenderer->renderItems(); ?>

                <?php $this->renderFooter(); ?>


            </div>


            <?php $this->renderCartIconButton(); ?>


        </div>

        <?php
    }

    public function renderCartLoader()
    {
        ?>
        <div class="fct-loader-wrap" data-fluent-cart-cart-drawer-loader aria-hidden="true">
            <div class="fct-loader-spinner"></div>
        </div>
        <?php
    }

    public function renderHeader()
    {
        ?>

        <div class="fct-cart-drawer-header">
            <h5 class="title">
                <?php esc_html_e('Shopping Cart', 'fluent-cart'); ?>
                <span>
                        &#40;
                        <span data-fluent-cart-cart-total-item
                              class="fluent-cart-cart-item-counter"
                              aria-live="polite">
                            <?php echo esc_html($this->itemCount); ?>
                        </span>
                        <?php esc_html_e('Items', 'fluent-cart'); ?>
                        &#41;
                    </span>
            </h5>

            <button data-fluent-cart-cart-collapse-button
                    class="fct-cart-drawer-close-button"
                    aria-label="<?php esc_attr_e('Close Cart', 'fluent-cart'); ?>">
                <svg xmlns="http://www.w3.org/2000/svg"
                     width="16" height="16"
                     viewBox="0 0 16 16"
                     aria-hidden="true" focusable="false">
                    <path d="M15 1L1 15M1 1L15 15"
                          stroke="currentColor"
                          stroke-width="1.5"
                          stroke-linecap="round"
                          stroke-linejoin="round">
                    </path>
                </svg>
            </button>
        </div>

        <?php
    }

    public function renderCartIconButton($skipIfLoaded = true)
    {
        $showCartIconInBody = (new StoreSettings())->get('show_cart_icon_in_body');
        static $loadedOnce = false;

        if ($loadedOnce && !$skipIfLoaded) {
            return '';
        }

        if ($showCartIconInBody !== 'yes') {
            return '';
        }
        ?>
        <button class="fct-cart-drawer-open-btn <?php echo esc_attr($this->itemCount > 0 ? '' : 'is-hidden') ?>"
                data-fluent-cart-cart-expand-button
                aria-label="<?php esc_attr_e('Open Shopping Cart', 'fluent-cart'); ?>">
            <img src="<?php echo esc_url(Vite::getAssetUrl('images/cart.svg')); ?>"
                 alt="<?php esc_attr_e('Cart Icon', 'fluent-cart'); ?>"/>

            <?php $this->renderItemCount(); ?>
        </button>
        <?php
    }

    public function renderFooter()
    {
        ?>

        <div class="fct-cart-drawer-footer">
            <?php $this->cartRenderer->renderTotal(); ?>

            <div class="fct-cart-drawer-footer-actions">
                <?php
                $this->cartRenderer->renderCheckoutButton();
                $this->cartRenderer->renderViewCartButton();
                ?>
            </div>
        </div>

        <?php
    }

    public function renderItemCount()
    {
        ?>
        <div class="fct-cart-badge-count" aria-live="polite">
            <?php
            if ($this->itemCount > 0) {
                echo esc_html($this->itemCount);
            }
            ?>
        </div>
        <?php
    }






}

```
