# fluent-support/1.5.5/app/Services/ProfileInfoService.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version 1.5.5. 24 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/1.5.5/code/app/Services/ProfileInfoService.php
- Raw: https://pluginprobe.com/plugins/fluent-support/1.5.5/raw/app/Services/ProfileInfoService.php
- Modified: 2022-03-02T14:22:44+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-support/1.5.5/code/app/Services/ProfileInfoService.php#L10-L20`.

```php
<?php

namespace FluentSupport\App\Services;


class ProfileInfoService
{
    public static function getProfileExtraWidgets($customer)
    {
        $widgets = [];
        /*
         * Filter customer profile widgets
         *
         * @since v1.0.0
         * @param array $widgets
         * @param object|array  $customer
         *
         * @return void
         */
        $widgets = apply_filters('fluent_support/customer_extra_widgets', $widgets, $customer);
        return $widgets;
    }
}

```
