uawdijnntqw1x1x1
IP : 216.73.216.231
Hostname : 213-108-241-110.cprapid.com
Kernel : Linux 213-108-241-110.cprapid.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
digilove
/
public_html
/
f7525
/
.
/
.
/
..
/
110
/
installation
/
framework
/
autoloader.php
/
/
<?php /** * ANGIE - The site restoration script for backup archives created by Akeeba Backup and Akeeba Solo * * @package angie * @copyright Copyright (c)2009-2023 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ defined('_AKEEBA') or die(); require_once __DIR__ . '/vendor-fixed/autoload.php'; function _angifw_autoloader($class_name) { static $angifwPath = null; // Make sure the class has an A prefix if(strpos($class_name, 'A') !== 0) { return false; } // Set up the path to the framework if(is_null($angifwPath)) { $angifwPath = __DIR__; } // Remove the prefix $class = substr($class_name, 1); // Change from camel cased (e.g. ViewHtml) into a lowercase array (e.g. 'view','html') $class = preg_replace('/(\s)+/', '_', $class); $class = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $class)); $class = explode('_', $class); // First try finding in structured directory format (preferred) $path = $angifwPath . '/' . implode('/', $class) . '.php'; if(@file_exists($path)) { include_once $path; } // Then try the duplicate last name structured directory format (not recommended) if(!class_exists($class_name, false)) { $lastPart = array_pop($class); array_push($class, $lastPart); $path = $angifwPath . '/' . implode('/', $class) . '/' . $lastPart . '.php'; if(@file_exists($path)) { include_once $path; } } } // Register the autoloader if( function_exists('spl_autoload_register') ) { // Joomla! is using its own autoloader function which has to be registered first... if(function_exists('__autoload')) { spl_autoload_register('__autoload'); } // ...and then register ourselves. spl_autoload_register('_angifw_autoloader'); } else { throw new Exception('Akeeba Next Generation Installer Framework requires the SPL extension to be loaded and activated', 500); }
/home/digilove/public_html/f7525/././../110/installation/framework/autoloader.php