# fluent-cart/1.6.4/config/shortcode.php

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

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/config/shortcode.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.4/raw/config/shortcode.php
- Modified: 2026-03-13T16:10:00+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/config/shortcode.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
<?php

use FluentCart\App\Services\ShortCodeParser\Parsers;

return [
    'parser_separator'    => '.',
    'template_string'     => '{{:template:}}',
    'parsers'             => [
        'wp'          => Parsers\WPParser::class,
        'user'        => Parsers\UserParser::class,
        //'billing' => OrderParser::class,
        'order'       => Parsers\OrderParser::class,
        'settings'    => Parsers\SettingsParser::class,
        'transaction'  => Parsers\TransactionParser::class,
        'item'         => Parsers\ItemParser::class,
        'license'      => Parsers\LicenseParser::class,
        'download'     => Parsers\DownloadParser::class,
        'subscription' => Parsers\SubscriptionParser::class,
    ],
    'parser_references'   => [

    ],
    'template_references' => [

    ],
];

```
