Sindbad~EG File Manager
<?php
/**
* Plugin Name: Popup Maker
* Plugin URI: https://wppopupmaker.com/?utm_campaign=plugin-info&utm_source=plugin-header&utm_medium=plugin-uri
* Description: Easily create & style popups with any content. Theme editor to quickly style your popups. Add forms, social media boxes, videos & more.
* Version: 1.21.4
* Requires PHP: 7.4
* Requires at least: 6.6
* Author: Popup Maker
* Author URI: https://wppopupmaker.com/?utm_campaign=plugin-info&utm_source=plugin-header&utm_medium=author-uri
* License: GPL2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: popup-maker
* Domain Path: /languages/
*
* @package PopupMaker
* @author Daniel Iser
* @copyright Copyright (c) 2023, Code Atlantic LLC
*/
defined( 'ABSPATH' ) || exit;
/**
* Define plugin's global configuration.
*
* @param string|null $key Key of config item to return.
*
* @return ($key is null ? array{
* name: string,
* slug: string,
* version: string,
* option_prefix: string,
* text_domain: string,
* fullname: string,
* min_php_ver: string,
* min_wp_ver: string,
* file: string,
* basename: string,
* url: string,
* path: string,
* api_url: string,
* } : (
* $key is 'name'|'slug'|'version'|'option_prefix'|'text_domain'|'fullname'|'min_php_ver'|'min_wp_ver'|'file'|'basename'|'url'|'path'|'api_url'
* ? string
* : false
* ))
*
* @since 1.20.0
*/
function popup_maker_config( $key = null ) {
static $config;
if ( ! isset( $config ) ) {
$config = [
// Using untranslated strings in config to avoid early translation loading.
// Translations for these strings should be handled at the point of display.
'name' => 'Popup Maker',
'slug' => 'popup-maker',
'version' => '1.21.4',
'option_prefix' => 'popup_maker',
'text_domain' => 'popup-maker',
'fullname' => 'Popup Maker',
'min_wp_ver' => '6.6.0',
'min_php_ver' => '7.4.0',
'future_wp_req' => '6.6.0',
'future_php_req' => '7.4.0',
'file' => __FILE__,
'basename' => plugin_basename( __FILE__ ),
'url' => plugin_dir_url( __FILE__ ),
'path' => plugin_dir_path( __FILE__ ),
'api_url' => 'https://wppopupmaker.com/',
];
}
if ( ! isset( $key ) ) {
return $config;
}
return isset( $config[ $key ] ) ? $config[ $key ] : false;
}
/**
* Early autoloader registration.
*
* Load the autoloader before any other code to ensure all classes are available
* to extensions and legacy code that may load early.
*/
// TODO This is redundant. It vendor files exist, then clearly the autoloader is working. This class either needs to be local or just bypass for autoload.php directly. Only really useful on dev sites where composer hasn't been init.
require_once __DIR__ . '/vendor-prefixed/code-atlantic/wp-autoloader/src/Autoloader.php';
if (
! class_exists( '\PopupMaker\Vendor\CodeAtlantic\Autoloader\Autoloader' )
|| ! \PopupMaker\Vendor\CodeAtlantic\Autoloader\Autoloader::init(
popup_maker_config( 'name' ),
popup_maker_config( 'path' ) . '/vendor-prefixed/autoload.php'
)
) {
// Autoloader failed - cannot continue as classes won't be available
add_action( 'admin_notices', function () {
echo '<div class="error"><p>' . esc_html__( 'Popup Maker: Failed to initialize autoloader. The plugin cannot load.', 'popup-maker' ) . '</p></div>';
} );
return;
}
/**
* Legacy bootstrap.
*
* Includes a non composer autoloader for backwards compatibility.
* This self unregisters itself if no autoloaders are present.
*
* This loads after the main autoloader to ensure modern classes are available.
*/
require_once __DIR__ . '/bootstrap.legacy.php';
/**
* Load the main plugin bootstrap.
* This handles the main initialization logic.
*/
require_once __DIR__ . '/bootstrap.php';
// Register activation, deactivation & uninstall hooks.
register_activation_hook( __FILE__, [ 'PUM_Install', 'activate_plugin' ] );
register_deactivation_hook( __FILE__, [ 'PUM_Install', 'deactivate_plugin' ] );
register_uninstall_hook( __FILE__, [ 'PUM_Install', 'uninstall_plugin' ] );
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists