# fluent-cart/1.6.5/app/Hooks/Handlers/ShortCodes/StoreLogoShortCode.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.6.5. 20 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.5/code/app/Hooks/Handlers/ShortCodes/StoreLogoShortCode.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.5/raw/app/Hooks/Handlers/ShortCodes/StoreLogoShortCode.php
- Modified: 2026-02-25T14:08:24+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.6.5/code/app/Hooks/Handlers/ShortCodes/StoreLogoShortCode.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Hooks\Handlers\ShortCodes;

use FluentCart\App\Services\Renderer\StoreLogoRenderer;

class StoreLogoShortCode extends ShortCode
{
    protected static string $shortCodeName = 'fluent_cart_store_logo';

    public function render(?array $viewData = null)
    {
        $data = $viewData ?? $this->shortCodeAttributes ?? [];

        $data['is_shortcode'] = true;

        $renderer = new StoreLogoRenderer();
        $renderer->render($data);
    }
}
```
