# fluent-support/trunk/boot/globals.php

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

- Page: https://pluginprobe.com/plugins/fluent-support/trunk/code/boot/globals.php
- Raw: https://pluginprobe.com/plugins/fluent-support/trunk/raw/boot/globals.php
- Modified: 2026-02-05T14:04:40+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/boot/globals.php#L10-L20`.

```php
<?php

if ( ! defined( 'ABSPATH' ) ) exit;

/**
 ***** DO NOT CALL ANY FUNCTIONS DIRECTLY FROM THIS FILE ******
 *
 * This file will be loaded even before the framework is loaded
 * so the $app is not available here, only declare functions here.
 */


is_readable(__DIR__ . '/globals_dev.php') && include 'globals_dev.php';

if (!function_exists('dd')) {
    function dd()
    {
        foreach (func_get_args() as $arg) {
            echo "<pre>";
            print_r($arg);
            echo "</pre>";
        }
        die();
    }
}

```
