| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentBooking\App\Services\GlobalModules; |
| 4 |
|
| 5 |
use FluentBooking\App\App; |
| 6 |
use FluentBooking\App\Services\Helper; |
| 7 |
use FluentBooking\Framework\Support\Arr; |
| 8 |
|
| 9 |
class GlobalModules |
| 10 |
{ |
| 11 |
public function register() |
| 12 |
{ |
| 13 |
add_filter('fluent_booking/settings_menu_items', [$this, 'addMenuItem'], 20); |
| 14 |
} |
| 15 |
|
| 16 |
public function addMenuItem($items) |
| 17 |
{ |
| 18 |
$items['global_modules'] = [ |
| 19 |
'title' => __('Advanced Features & Addons', 'fluent-booking'), |
| 20 |
'disable' => false, |
| 21 |
'svg_icon' => '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" id="checklist"><path d="M61,18.34A3.43,3.43,0,0,0,59.76,16l-1.91-1.6a3.48,3.48,0,0,0-4.9.43l-2.4,2.85L47,21.9V11.83a3,3,0,0,0-.88-2.12L39.29,2.88A3,3,0,0,0,37.17,2H6A3,3,0,0,0,3,5V59a3,3,0,0,0,3,3H44a3,3,0,0,0,3-3V37a.93.93,0,0,0-.07-.33L60.19,20.88A3.48,3.48,0,0,0,61,18.34ZM45,59a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4H37v7a1,1,0,0,0,1,1h7V24a1,1,0,0,0,0,.23L32.2,39.54a.93.93,0,0,0-.2.38s0,0,0,0l-1.93,8.1a1,1,0,0,0,.33,1,1,1,0,0,0,.64.24,1.14,1.14,0,0,0,.4-.08l7.64-3.32h0a1,1,0,0,0,.36-.27L45,39ZM38.55,43.56l-4.18-3.5L51.44,19.71l4.18,3.51Z"/><path d="M22 14H33a1 1 0 0 0 0-2H22a1 1 0 0 0 0 2zM21 26H39a1 1 0 0 0 0-2H21a1 1 0 0 0 0 2zM31 37a1 1 0 0 0-1-1H21a1 1 0 0 0 0 2h9A1 1 0 0 0 31 37zM17 33H11a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V34A1 1 0 0 0 17 33zm-1 6H12V35h4zM27 48H21a1 1 0 0 0 0 2h6a1 1 0 0 0 0-2zM17 45H11a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V46A1 1 0 0 0 17 45zm-1 6H12V47h4zM13.29 28.71A1 1 0 0 0 14 29h.16a1 1 0 0 0 .73-.54l3-6a1 1 0 1 0-1.78-.9l-2.38 4.76-2-2a1 1 0 0 0-1.42 1.42zM13.29 16.71A1 1 0 0 0 14 17h.16a1 1 0 0 0 .73-.54l3-6a1 1 0 1 0-1.78-.9l-2.38 4.76-2-2a1 1 0 0 0-1.42 1.42z"/></svg>', |
| 22 |
'component_type' => 'StandAloneComponent', |
| 23 |
'class' => 'advanced_features_and_addons', |
| 24 |
'route' => [ |
| 25 |
'name' => 'globalModules' |
| 26 |
] |
| 27 |
]; |
| 28 |
|
| 29 |
return $items; |
| 30 |
} |
| 31 |
|
| 32 |
public function getAllModules() |
| 33 |
{ |
| 34 |
$assetUrl = App::getInstance('url.assets'); |
| 35 |
$settings = Helper::getGlobalModuleSettings(); |
| 36 |
return apply_filters('fluent_booking/global_modules', [ |
| 37 |
'fluent-cart' => [ |
| 38 |
'logo' => $assetUrl . 'images/fluent-cart.svg', |
| 39 |
'name' => 'fluent-cart', |
| 40 |
'title' => __('FluentCart', 'fluent-booking'), |
| 41 |
'description' => __('Seamlessly integrate FluentCart to sell paid bookings and manage products directly from your appointments.', 'fluent-booking'), |
| 42 |
'is_unavailable' => !defined('FLUENTCART_VERSION'), |
| 43 |
'install_url' => admin_url('plugin-install.php?s=FluentCart&tab=search&type=term'), |
| 44 |
'is_system' => 'yes', |
| 45 |
'is_active' => defined('FLUENTCART_VERSION') |
| 46 |
], |
| 47 |
'fluentcrm' => [ |
| 48 |
'logo' => $assetUrl . 'images/fluentcrm.svg', |
| 49 |
'name' => 'fluentcrm', |
| 50 |
'title' => __('FluentCRM', 'fluent-booking'), |
| 51 |
'description' => __('Segment your guests, send bulk emails, run automations using FluentCRM', 'fluent-booking'), |
| 52 |
'is_unavailable' => !defined('FLUENTCRM'), |
| 53 |
'install_url' => admin_url('plugin-install.php?s=FluentCRM&tab=search&type=term'), |
| 54 |
'is_system' => 'yes', |
| 55 |
'is_active' => defined('FLUENTCRM') |
| 56 |
], |
| 57 |
'fluentform' => [ |
| 58 |
'logo' => $assetUrl . 'images/fluentform.png', |
| 59 |
'name' => 'fluentform', |
| 60 |
'title' => __('Fluent Forms', 'fluent-booking'), |
| 61 |
'description' => __('Create beautiful booking forms using Fluent Forms with your booking field', 'fluent-booking'), |
| 62 |
'is_unavailable' => !defined('FLUENTFORM'), |
| 63 |
'install_url' => admin_url('plugin-install.php?s=Fluent%20Forms&tab=search&type=term'), |
| 64 |
'is_system' => 'yes', |
| 65 |
'is_active' => defined('FLUENTFORM') |
| 66 |
], |
| 67 |
'fluentsmtp' => [ |
| 68 |
'logo' => $assetUrl . 'images/fluent-smtp.svg', |
| 69 |
'name' => 'fluentsmtp', |
| 70 |
'title' => __('FluentSMTP', 'fluent-booking'), |
| 71 |
'description' => __('Send emails using FluentSMTP with your booking field', 'fluent-booking'), |
| 72 |
'is_unavailable' => !defined('FLUENTMAIL'), |
| 73 |
'install_url' => admin_url('plugin-install.php?s=FluentSMTP&tab=search&type=term'), |
| 74 |
'is_system' => 'yes', |
| 75 |
'is_active' => defined('FLUENTMAIL'), |
| 76 |
], |
| 77 |
'fluentboards' => [ |
| 78 |
'logo' => $assetUrl . 'images/fluentboards.png', |
| 79 |
'name' => 'fluentboards', |
| 80 |
'title' => __('Fluent Boards', 'fluent-booking'), |
| 81 |
'description' => __('Seamlessly create tasks in Fluent Boards using your booking field', 'fluent-booking'), |
| 82 |
'is_unavailable' => !defined('FLUENT_BOARDS'), |
| 83 |
'install_url' => admin_url('plugin-install.php?s=FluentBoards&tab=search&type=term'), |
| 84 |
'is_system' => 'yes', |
| 85 |
'is_active' => defined('FLUENT_BOARDS') |
| 86 |
], |
| 87 |
'woo' => [ |
| 88 |
'logo' => $assetUrl . 'images/woo.svg', |
| 89 |
'name' => 'woo', |
| 90 |
'title' => __('WooCommerce', 'fluent-booking'), |
| 91 |
'description' => __('Accept payment on your booking appointment with WooCommerce Checkout', 'fluent-booking'), |
| 92 |
'is_unavailable' => !defined('WC_PLUGIN_FILE'), |
| 93 |
'is_system' => 'no', |
| 94 |
'is_active' => Arr::get($settings, 'woocommerce') == 'yes', |
| 95 |
], |
| 96 |
]); |
| 97 |
} |
| 98 |
} |
| 99 |
|