mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-05-01 11:12:18 +08:00
new file: v-wp-updater/api/DebugLogApi.php new file: v-wp-updater/api/PluginApi.php new file: v-wp-updater/api/ThemeApi.php modified: v-wp-updater/assets/styles.css new file: v-wp-updater/composer.json new file: v-wp-updater/helpers/DebugLog.php new file: v-wp-updater/helpers/Logger.php new file: v-wp-updater/helpers/Options.php new file: v-wp-updater/helpers/Pushover.php new file: v-wp-updater/helpers/Security.php renamed: v-wp-updater/includes/class-v-wp-updater-silent-upgrader-skin.php -> v-wp-updater/helpers/SilentUpgraderSkin.php deleted: v-wp-updater/includes/class-v-wp-updater-plugin-updater.php deleted: v-wp-updater/includes/class-v-wp-updater-theme-updater.php modified: v-wp-updater/install.php new file: v-wp-updater/services/CacheClearer.php new file: v-wp-updater/services/Impersonation.php new file: v-wp-updater/services/PluginUpdater.php new file: v-wp-updater/services/RemoteBackup.php new file: v-wp-updater/services/SupportBot.php new file: v-wp-updater/services/ThemeUpdater.php modified: v-wp-updater/uninstall.php new file: v-wp-updater/utilities/AbstractRemoteUpdater.php new file: v-wp-updater/utilities/Ajax.php new file: v-wp-updater/utilities/Cron.php new file: v-wp-updater/utilities/WidgetRegistry.php modified: v-wp-updater/v-wp-dashboard.php new file: v-wp-updater/vendor/autoload.php new file: v-wp-updater/vendor/composer/ClassLoader.php new file: v-wp-updater/vendor/composer/LICENSE new file: v-wp-updater/vendor/composer/autoload_classmap.php new file: v-wp-updater/vendor/composer/autoload_namespaces.php new file: v-wp-updater/vendor/composer/autoload_psr4.php new file: v-wp-updater/vendor/composer/autoload_real.php new file: v-wp-updater/vendor/composer/autoload_static.php new file: v-wp-updater/vendor/composer/platform_check.php new file: v-wp-updater/widgets/logs.php new file: v-wp-updater/widgets/services.php modified: v-wp-updater/widgets/settings.php new file: v-wp-updater/widgets/status.php new file: v-wp-updater/widgets/support.php
38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<?php
|
|
|
|
// autoload_real.php @generated by Composer
|
|
|
|
class ComposerAutoloaderInit950c0b236062062c4af03838aa1f6e54
|
|
{
|
|
private static $loader;
|
|
|
|
public static function loadClassLoader($class)
|
|
{
|
|
if ('Composer\Autoload\ClassLoader' === $class) {
|
|
require __DIR__ . '/ClassLoader.php';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return \Composer\Autoload\ClassLoader
|
|
*/
|
|
public static function getLoader()
|
|
{
|
|
if (null !== self::$loader) {
|
|
return self::$loader;
|
|
}
|
|
|
|
require __DIR__ . '/platform_check.php';
|
|
|
|
spl_autoload_register(array('ComposerAutoloaderInit950c0b236062062c4af03838aa1f6e54', 'loadClassLoader'), true, true);
|
|
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
|
spl_autoload_unregister(array('ComposerAutoloaderInit950c0b236062062c4af03838aa1f6e54', 'loadClassLoader'));
|
|
|
|
require __DIR__ . '/autoload_static.php';
|
|
call_user_func(\Composer\Autoload\ComposerStaticInit950c0b236062062c4af03838aa1f6e54::getInitializer($loader));
|
|
|
|
$loader->register(true);
|
|
|
|
return $loader;
|
|
}
|
|
}
|