PHP 8.2.31
Preview: Frontend.php Size: 672 B
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/app/Agent/Frontend.php

<?php

/**
 * Frontend.
 */

namespace Extendify\Agent;

defined('ABSPATH') || die('No direct access.');

/**
 * This class handles frontend concerns for the Agent.
 */
class Frontend
{
    public function __construct()
    {
        $this->loadIntegrations();
    }

    /**
     * Load the integration classes
     *
     * @return void
     */
    protected function loadIntegrations()
    {
        foreach (glob(__DIR__ . '/Integrations/*.php') as $file) {
            $class = 'Extendify\\Agent\\Integrations\\' . basename($file, '.php');

            if (!class_exists($class)) {
                continue;
            }

            new $class();
        }
    }
}

Directory Contents

Dirs: 2 × Files: 4

Name Size Perms Modified Actions
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
18.67 KB lrw-r--r-- 2026-04-09 23:45:00
Edit Download
672 B lrw-r--r-- 2026-02-27 04:48:52
Edit Download
4.20 KB lrw-r--r-- 2025-09-30 21:20:28
Edit Download
4.29 KB lrw-r--r-- 2026-04-09 23:45:00
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).