# fluent-support/trunk/app/Services/Blocks/BlockHelper.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version trunk. 70 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/trunk/code/app/Services/Blocks/BlockHelper.php
- Raw: https://pluginprobe.com/plugins/fluent-support/trunk/raw/app/Services/Blocks/BlockHelper.php
- Modified: 2025-04-22T11:03:58+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/trunk/code/app/Services/Blocks/BlockHelper.php#L10-L20`.

```php
<?php

namespace FluentSupport\App\Services\Blocks;

class BlockHelper
{
    // Store the attributes provided for styling
    private static $attributes = [];

    /**
     * Generate and output inline CSS styles based on the provided attributes.
     *
     * This method processes the provided attributes and dynamically generates CSS styles for various components
     * of customer portal pages, such as the Tickets List, View Ticket, and Create Ticket sections.
     *
     * @param array $attributes An associative array of attributes used for styling.
     */

    public static function processAttributesAndPrepareStyle($attributes)
    {
        self::$attributes = $attributes;
        ?>
        <style type="text/css">
            #fluent_support_client_app {
                .fs_tickets_container,
                .fs_ticket_form_container {
                    border-radius: <?php echo esc_attr($attributes['containerBorderRadius'] ?? 16); ?>px;
                }

                .fs_create_ticket_btn,
                .fs_create_ticket_button,
                .fs_reply_btn {
                    background-color: <?php echo esc_attr($attributes['primaryButtonBgColor'] ?? 'rgba(14, 18, 27, 1)'); ?>;
                    color: <?php echo esc_attr($attributes['primaryButtonTextColor'] ?? 'rgba(255, 255, 255, 1)'); ?>;
                }

                .fs_ticket_refresh_btn,
                .fs_upload_button {
                    background-color: <?php echo esc_attr($attributes['secondaryButtonBgColor'] ?? 'rgba(255, 255, 255, 1)'); ?>;
                    color: <?php echo esc_attr($attributes['secondaryButtonTextColor'] ?? '#18181B'); ?>;
                }

                .fs_ticket_refresh_btn span,
                .fs_upload_button span {
                    color: inherit !important;
                }

                .fs_close_ticket {
                    background-color: <?php echo esc_attr($attributes['secondaryButtonBgColor'] ?? '#F5F7FA'); ?>;
                    color: <?php echo esc_attr($attributes['secondaryButtonTextColor'] ?? '#525866'); ?>;
                    opacity: 0.8;
                    filter: brightness(0.8);
                }

                .fs_client_portal
                .fs_create_ticket_container .el-input__wrapper,
                .fs_create_ticket_container .el-select__wrapper,
                .fs_custom_fields_wrap .el-select__wrapper {
                    border-radius: <?php echo esc_attr($attributes['ticketInputBorderRadius'] ?? 10); ?>px;
                }

                .fs_client_portal .fs_ticket_threads_container .fs_ticket_thread .fs_ticket_thread_content .fs_ticket_avatar {
                    border-radius: <?php echo esc_attr($attributes['avatarBorderRadius'] ?? '50%'); ?>;
                }
            }

        </style>
    <?php }
}

```
