# boxzilla/3.4.10/src/functions.php

Boxzilla – WordPress Popup Builder, version 3.4.10. 22 lines.

- Page: https://pluginprobe.com/plugins/boxzilla/3.4.10/code/src/functions.php
- Raw: https://pluginprobe.com/plugins/boxzilla/3.4.10/raw/src/functions.php
- Modified: 2026-05-20T09:51:30+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/boxzilla/3.4.10/code/src/functions.php#L10-L20`.

```php
<?php

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

use Boxzilla\Boxzilla;

/**
 * @return Boxzilla
 */
function boxzilla()
{
    static $instance;

    if (is_null($instance)) {
        $instance = new Boxzilla();
    }

    return $instance;
}

```
