File: /home/nassaugo/public_html/wp-content/plugins/git-updater/git-updater.php
<?php
/**
* Git Updater
*
* @author Andy Fragen
* @license MIT
* @link https://github.com/afragen/git-updater
* @package git-updater
*/
/**
* Plugin Name: Git Updater
* Plugin ID: did:plc:afjf7gsjzsqmgc7dlhb553mv
* Plugin URI: https://git-updater.com
* Description: A plugin to automatically update GitHub hosted plugins, themes, and language packs. Additional API plugins available for Bitbucket, GitLab, Gitea, and Gist.
* Version: 12.19.0
* Author: Andy Fragen
* Author URI: https://thefragens.com
* Security: andy+security@git-updater.com
* License: MIT
* Domain Path: /languages
* Text Domain: git-updater
* Network: true
* Update URI: afragen/git-updater
* GitHub Plugin URI: https://github.com/afragen/git-updater
* GitHub Languages: https://github.com/afragen/git-updater-translations
* Requires at least: 5.9
* Requires PHP: 8.0
*/
namespace Fragen\Git_Updater;
use Fragen\Git_Updater\API\Zipfile_API;
use Fragen\Git_Updater\Additions\Additions;
const PLUGIN_FILE = __FILE__;
const PLUGIN_DIR = __DIR__;
/*
* Exit if called directly.
* PHP version check and exit.
*/
if ( ! defined( 'WPINC' ) ) {
die;
}
// Load the Composer autoloader.
if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {
// Avoids a redeclaration error for move_dir() from Shim.php.
require_once ABSPATH . 'wp-admin/includes/file.php';
require_once __DIR__ . '/vendor/autoload.php';
}
// Check for composer autoloader.
if ( ! class_exists( 'Fragen\Git_Updater\Bootstrap' ) ) {
require_once __DIR__ . '/src/Git_Updater/Bootstrap.php';
( new Bootstrap() )->deactivate_die();
}
register_activation_hook( PLUGIN_FILE, [ new Bootstrap(), 'rename_on_activation' ] );
( new Zipfile_API() )->load_hooks();
add_action(
'plugins_loaded',
function () {
( new Bootstrap() )->run();
}
);
// Initiate Additions.
add_filter(
'gu_additions',
static function ( $listing, $repos, $type ) {
$config = get_site_option( 'git_updater_additions', [] );
$additions = new Additions();
$additions->register( $config, $repos, $type );
$additions->add_to_git_updater = array_merge( (array) $additions->add_to_git_updater, (array) $listing );
return $additions->add_to_git_updater;
},
10,
3
);