[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.145.58.162: ~ $
<?php
/**
 * Add-on helper functions.
 * These functions are not using namespace since they may be used from a PHP 5.2 file.
 *
 * @since 2.0
 */
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

/**
 * Load an Email Log add-on.
 *
 * @since 2.0.0
 *
 * @param string $addon_class Add-on class name.
 * @param string $addon_file  Add-on File.
 *
 * @return \EmailLog\Addon\EmailLogAddon Instance of the add-on.
 */
function load_email_log_addon( $addon_class, $addon_file ) {
	$email_log = email_log();

	$addon_dir = plugin_dir_path( $addon_file );
	$email_log->loader->add_namespace( 'EmailLog', $addon_dir . 'include' );

	$addon_updater = null;

	if ( \EmailLog\Util\is_admin_non_ajax_request() ) {
		$addon_updater = new \EmailLog\Addon\AddonUpdater( $addon_file );
	}

	$addon = new $addon_class( $addon_file, $addon_updater );

	add_action( 'el_loaded', array( $addon, 'load' ) );

	return $addon;
}

Filemanager

Name Type Size Permission Actions
API Folder 0755
License Folder 0755
Addon.php File 9.86 KB 0644
AddonList.php File 4.79 KB 0644
AddonUpdater.php File 1.64 KB 0644
DependencyEnforcer.php File 2.76 KB 0644
EmailLogAddon.php File 1.46 KB 0644
Upseller.php File 3.73 KB 0644
addon-helper.php File 918 B 0644