# fluent-cart/1.6.4/app/Services/ShortCodeParser/Parsers/SettingsParser.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.6.4. 126 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/app/Services/ShortCodeParser/Parsers/SettingsParser.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.4/raw/app/Services/ShortCodeParser/Parsers/SettingsParser.php
- Modified: 2026-06-11T12:21: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.6.4/code/app/Services/ShortCodeParser/Parsers/SettingsParser.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Services\ShortCodeParser\Parsers;

use FluentCart\Api\StoreSettings;
use FluentCart\App\Helpers\AddressHelper;
use FluentCart\App\Services\Localization\LocalizationManager;

class SettingsParser extends BaseParser
{
    private StoreSettings $storeSettings;


    public function __construct($data)
    {
        $this->storeSettings = new StoreSettings();
        parent::__construct($data);
    }

    protected array $methodMap = [
        'store_logo'            => 'getStoreLogo',
        'store_brand'           => 'getStoreBrandHtml',
        'store_name'            => 'getStoreName',
        'store_address'         => 'getStoreAddress',
        'store_address2'        => 'getStoreAddressLine2',
        'store_country'         => 'getStoreCountry',
        'store_state'           => 'getStoreState',
        'store_city'            => 'getStoreCity',
        'store_postcode'        => 'getStorePostcode',
        'company_name'          => 'getCompanyName',
        'legal_registration_id' => 'getLegalRegistrationId',
        'seller_vat_id'         => 'getSellerVatId',
        'seller_tax_id'         => 'getSellerTaxId',
    ];

    public function parse($accessor = null, $code = null): ?string
    {
        return $this->get($accessor, $code);
    }

    public function getStoreLogoLink(): ?string
    {
        return $this->storeSettings->get('store_logo.url');
    }

    public function getStoreLogo(): ?string
    {
        $storeLogo = $this->storeSettings->get('store_logo.url');
        if(empty($storeLogo)){
            return '';
        }
        $storeName = $this->getStoreName();
        return "<img style='max-height: 50px' src='{$storeLogo}' alt='{$storeName}'>";
    }

    public function getStoreName(): ?string
    {
        return $this->storeSettings->get('store_name');
    }

    public function getStoreBrandHtml(): ?string
    {
        $storeLogoLink = $this->getStoreLogoLink();
        $storeName = $this->getStoreName();

        if (!$storeLogoLink) {
            return $storeName;
        }

        return $this->getStoreLogo();
    }

    public function getStoreAddress()
    {
        return $this->storeSettings->get('store_address1');
    }

    public function getStoreAddressLine2()
    {
        return $this->storeSettings->get('store_address2');
    }

    public function getStoreCountry()
    {
        $country = $this->storeSettings->get('store_country');
        return AddressHelper::getCountryNameByCode($country);
    }

    public function getStoreState()
    {
        $state = $this->storeSettings->get('store_state');
        $country = $this->storeSettings->get('store_country');
        return AddressHelper::getStateNameByCode($state,$country);
    }

    public function getStoreCity()
    {
        return $this->storeSettings->get('store_city');
    }

    public function getStorePostcode()
    {
        return $this->storeSettings->get('store_postcode');
    }

    public function getCompanyName(): ?string
    {
        return $this->storeSettings->get('company_name');
    }

    public function getLegalRegistrationId(): ?string
    {
        return $this->storeSettings->get('legal_registration_id');
    }

    public function getSellerVatId(): ?string
    {
        return $this->storeSettings->get('seller_vat_id');
    }

    public function getSellerTaxId(): ?string
    {
        return $this->storeSettings->get('seller_tax_id');
    }
}

```
