__('Advanced Features & Addons', 'fluent-booking'), 'disable' => false, 'svg_icon' => '', 'component_type' => 'StandAloneComponent', 'class' => 'advanced_features_and_addons', 'route' => [ 'name' => 'globalModules' ] ]; return $items; } public function getAllModules() { $assetUrl = App::getInstance('url.assets'); $settings = Helper::getGlobalModuleSettings(); return apply_filters('fluent_booking/global_modules', [ 'fluent-cart' => [ 'logo' => $assetUrl . 'images/fluent-cart.svg', 'name' => 'fluent-cart', 'title' => __('FluentCart', 'fluent-booking'), 'description' => __('Seamlessly integrate FluentCart to sell paid bookings and manage products directly from your appointments.', 'fluent-booking'), 'is_unavailable' => !defined('FLUENTCART_VERSION'), 'install_url' => admin_url('plugin-install.php?s=FluentCart&tab=search&type=term'), 'is_system' => 'yes', 'is_active' => defined('FLUENTCART_VERSION') ], 'fluentcrm' => [ 'logo' => $assetUrl . 'images/fluentcrm.svg', 'name' => 'fluentcrm', 'title' => __('FluentCRM', 'fluent-booking'), 'description' => __('Segment your guests, send bulk emails, run automations using FluentCRM', 'fluent-booking'), 'is_unavailable' => !defined('FLUENTCRM'), 'install_url' => admin_url('plugin-install.php?s=FluentCRM&tab=search&type=term'), 'is_system' => 'yes', 'is_active' => defined('FLUENTCRM') ], 'fluentform' => [ 'logo' => $assetUrl . 'images/fluentform.png', 'name' => 'fluentform', 'title' => __('Fluent Forms', 'fluent-booking'), 'description' => __('Create beautiful booking forms using Fluent Forms with your booking field', 'fluent-booking'), 'is_unavailable' => !defined('FLUENTFORM'), 'install_url' => admin_url('plugin-install.php?s=Fluent%20Forms&tab=search&type=term'), 'is_system' => 'yes', 'is_active' => defined('FLUENTFORM') ], 'fluentsmtp' => [ 'logo' => $assetUrl . 'images/fluent-smtp.svg', 'name' => 'fluentsmtp', 'title' => __('FluentSMTP', 'fluent-booking'), 'description' => __('Send emails using FluentSMTP with your booking field', 'fluent-booking'), 'is_unavailable' => !defined('FLUENTMAIL'), 'install_url' => admin_url('plugin-install.php?s=FluentSMTP&tab=search&type=term'), 'is_system' => 'yes', 'is_active' => defined('FLUENTMAIL'), ], 'fluentboards' => [ 'logo' => $assetUrl . 'images/fluentboards.png', 'name' => 'fluentboards', 'title' => __('Fluent Boards', 'fluent-booking'), 'description' => __('Seamlessly create tasks in Fluent Boards using your booking field', 'fluent-booking'), 'is_unavailable' => !defined('FLUENT_BOARDS'), 'install_url' => admin_url('plugin-install.php?s=FluentBoards&tab=search&type=term'), 'is_system' => 'yes', 'is_active' => defined('FLUENT_BOARDS') ], 'woo' => [ 'logo' => $assetUrl . 'images/woo.svg', 'name' => 'woo', 'title' => __('WooCommerce', 'fluent-booking'), 'description' => __('Accept payment on your booking appointment with WooCommerce Checkout', 'fluent-booking'), 'is_unavailable' => !defined('WC_PLUGIN_FILE'), 'is_system' => 'no', 'is_active' => Arr::get($settings, 'woocommerce') == 'yes', ], ]); } }