# fluent-booking/1.5.21/app/Services/Integrations/FluentCRM/FluentCrmInit.php

Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution, version 1.5.21. 155 lines.

- Page: https://pluginprobe.com/plugins/fluent-booking/1.5.21/code/app/Services/Integrations/FluentCRM/FluentCrmInit.php
- Raw: https://pluginprobe.com/plugins/fluent-booking/1.5.21/raw/app/Services/Integrations/FluentCRM/FluentCrmInit.php
- Modified: 2024-08-23T14:23:04+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-booking/1.5.21/code/app/Services/Integrations/FluentCRM/FluentCrmInit.php#L10-L20`.

```php
<?php

namespace FluentBooking\App\Services\Integrations\FluentCRM;

use FluentBooking\App\Models\Booking;
use FluentBooking\App\Services\DateTimeHelper;

class FluentCrmInit
{
    public function __construct()
    {
        $this->registerHooks();
        $this->registerIntegrations();

        // Contextual SmartCodes
        (new CrmSmartCode())->register();

        add_filter('fluent_crm_asset_listed_slugs', function ($lists) {
            $lists[] = 'fluent-booking';
            return $lists;
        });
    }

    /**
     * Register all the CRM integrations from here
     * @return void
     */
    public function registerIntegrations()
    {
        $this->addContactMenuSection();
        $this->addAutomations();
    }

    public function registerHooks()
    {
        add_filter('fluentcrm_profile_sections', [$this, 'addProfileSection'], 10, 1);
        add_filter('fluentcrm_get_form_submissions_fluent_booking', [$this, 'getScheduledMeetings'], 10, 2);
    }

    /**
     * load Assets for to Fluent CRM  contact section
     * @return void
     */
    public function addContactMenuSection()
    {
        add_action('fluent_crm/global_appjs_loaded', function () {
            wp_enqueue_script('fluent_booking_in_crm', FLUENT_BOOKING_URL . 'assets/admin/fluent-crm-in-calendar.js', [], FLUENT_BOOKING_ASSETS_VERSION, true);
        });
    }

    public function addAutomations()
    {
        new NewBookingTrigger();
        new CancelBookingTrigger();
        new BookingCompletedTrigger();
        new BookingRescheduledTrigger();
    }

    private function getSubscriberId($email)
    {
        $contact = FluentCrmApi('contacts')->getContact($email);
        return $contact ? $contact->id : null;
    }

    public function addProfileSection($sections)
    {
        $sections['booking'] = [
            'name'    => 'booking',
            'title'   => __('Bookings', 'fluent-booking'),
            'handler' => 'route'
        ];

        return $sections;
    }

    private function getActionUrl($meeting)
    {
        $url = admin_url('admin.php?page=fluent-booking#/scheduled-events?booking_id=' . $meeting->id);

        $link = '<a target="_blank" href="' . esc_url($url) . '">' . 'view' . '</a>';
        
        return $link;
    }

    private function getFormattedTime($meeting)
    {
        $formattedTime = DateTimeHelper::convertToTimeZone($meeting->start_time, 'utc', $meeting->calendar->author_timezone, 'j M Y, g:i A');

        return $formattedTime;
    }

    private function getBookingTitle($meeting)
    {
        $host = $meeting->calendar->getAuthorProfile();
        $title = $meeting->slot->title . ' with ' . $host['name'];

        return $title;
    }

    public function getScheduledMeetings($data, $subsriber)
    {
        $app = fluentCrm();
        $page = intval($app->request->get('page', 1));
        $perPage = intval($app->request->get('per_page', 10));

        $meetings = Booking::with(['slot', 'calendar'])
            ->where('email', $subsriber->email)
            ->distinct('group_id')
            ->orderBy('start_time', 'DESC')
            ->paginate();

        $formattedMeetings = [];

        foreach ($meetings->items() as $meeting) {
            if (!$meeting->calendar || !$meeting->slot) {
                continue;
            }

            $formattedMeetings[] = [
                'id'         => '#' . $meeting->group_id,
                'title'      => $this->getBookingTitle($meeting),
                'status'     => $meeting->status,
                'meeting_at' => $this->getFormattedTime($meeting),
                'action'     => $this->getActionUrl($meeting)
            ];
        }

        return [
            'total'          => $meetings->total(),
            'data'           => $formattedMeetings,
            'columns_config' => [
                'id'         => [
                    'label' => __('ID', 'fluent-booking'),
                    'width' => '100px'
                ],
                'title'      => [
                    'label' => __('Event', 'fluent-booking'),
                ],
                'status'     => [
                    'label' => __('Status', 'fluent-booking'),
                    'width' => '150px'
                ],
                'meeting_at' => [
                    'label' => __('Meeting At', 'fluent-booking'),
                    'width' => '200px'
                ],
                'action'     => [
                    'label' => __('Action', 'fluent-booking'),
                    'width' => '100px'
                ]
            ]
        ];
    }
}

```
