- Created LICENSE file for composer dependencies. - Added autoload files: autoload_classmap.php, autoload_namespaces.php, autoload_psr4.php, autoload_real.php, and autoload_static.php. - Initialized installed.json for composer. - Added index.php and form templates for admin configuration. - Implemented front-end templates for email alerts, including account management and product notifications. - Included necessary headers and copyright notices in all new files.
44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
|
|
// autoload_real.php @generated by Composer
|
|
|
|
class ComposerAutoloaderInita514d5349db65fb5fb286a7e4710fa94
|
|
{
|
|
private static $loader;
|
|
|
|
public static function loadClassLoader($class)
|
|
{
|
|
if ('Composer\Autoload\ClassLoader' === $class) {
|
|
require __DIR__ . '/ClassLoader.php';
|
|
}
|
|
}
|
|
|
|
public static function getLoader()
|
|
{
|
|
if (null !== self::$loader) {
|
|
return self::$loader;
|
|
}
|
|
|
|
spl_autoload_register(array('ComposerAutoloaderInita514d5349db65fb5fb286a7e4710fa94', 'loadClassLoader'), true, false);
|
|
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
|
spl_autoload_unregister(array('ComposerAutoloaderInita514d5349db65fb5fb286a7e4710fa94', 'loadClassLoader'));
|
|
|
|
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
|
if ($useStaticLoader) {
|
|
require_once __DIR__ . '/autoload_static.php';
|
|
|
|
call_user_func(\Composer\Autoload\ComposerStaticInita514d5349db65fb5fb286a7e4710fa94::getInitializer($loader));
|
|
} else {
|
|
$classMap = require __DIR__ . '/autoload_classmap.php';
|
|
if ($classMap) {
|
|
$loader->addClassMap($classMap);
|
|
}
|
|
}
|
|
|
|
$loader->setClassMapAuthoritative(true);
|
|
$loader->register(false);
|
|
|
|
return $loader;
|
|
}
|
|
}
|