# buttonizer-multifunctional-button/trunk/app/Core/autoload.php

Buttonizer – Floating Menus, Sticky Buttons, &amp; Popup Builder, version trunk. 20 lines.

- Page: https://pluginprobe.com/plugins/buttonizer-multifunctional-button/trunk/code/app/Core/autoload.php
- Raw: https://pluginprobe.com/plugins/buttonizer-multifunctional-button/trunk/raw/app/Core/autoload.php
- Modified: 2026-08-05T17:29:16+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/buttonizer-multifunctional-button/trunk/code/app/Core/autoload.php#L10-L20`.

```php
<?php
// autoload.php @generated by Strauss

if ( file_exists( __DIR__ . '/autoload-classmap.php' ) ) {
    $class_map = include __DIR__ . '/autoload-classmap.php';
    if ( is_array( $class_map ) ) {
        spl_autoload_register(
            function ( $classname ) use ( $class_map ) {
                if ( isset( $class_map[ $classname ] ) && file_exists( $class_map[ $classname ] ) ) {
                    require_once $class_map[ $classname ];
                }
            }
        );
    }
    unset( $class_map, $strauss_src );
}

if ( file_exists( __DIR__ . '/autoload-files.php' ) ) {
    require_once __DIR__ . '/autoload-files.php';
}
```
