Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php
/**
 * Deprecated classes
 *
 * @package   PopupMaker
 * @copyright Copyright (c) 2024, Code Atlantic LLC
 *
 * phpcs:disable Generic.Files.OneObjectStructurePerFile.MultipleFound, PSR2.Classes.PropertyDeclaration.ScopeMissing
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * PopMake_License Class
 *
 * @deprecated 1.5.0
 *
 * Use PUM_Extension_License instead.
 */
if ( class_exists( 'PUM_Extension_License' ) ) {
	/**
	 * PopMake_License Class
	 *
	 * @deprecated 1.5.0 Use PUM_Extension_License instead.
	 */
	class PopMake_License extends PUM_Extension_License {}
}

/**
 * PopupMaker_Plugin_Updater
 *
 * @deprecated 1.5.0 Use PUM_Extension_Updater.
 */
if ( class_exists( 'PUM_Extension_Updater' ) ) {
	/**
	 * PopupMaker_Plugin_Updater
	 *
	 * @deprecated 1.5.0 Use PUM_Extension_Updater.
	 */
	class PopupMaker_Plugin_Updater extends PUM_Extension_Updater {}
}

/**
 * Popmake_Cron Class
 *
 * This class handles scheduled events
 *
 * @since 1.3.0
 * @deprecated 1.8.0
 */
if ( class_exists( 'PUM_Utils_Cron' ) ) {
	/**
	 * Popmake_Cron Class
	 *
	 * @deprecated 1.8.0 Use PUM_Utils_Cron instead.
	 */
	class Popmake_Cron extends PUM_Utils_Cron {}
}

/**
 * Class PUM_Popup_Query
 *
 * @deprecated 1.8.0
 */
class PUM_Popup_Query {

	/**
	 * The args to pass to the pum_get_popups() query
	 *
	 * @var array
	 * @access public
	 */
	public $args = [];

	/**
	 * Default query arguments.
	 *
	 * Not all of these are valid arguments that can be passed to WP_Query. The ones that are not, are modified before
	 * the query is run to convert them to the proper syntax.
	 *
	 * @param array $args The array of arguments that can be passed in and used for setting up this popup query.
	 */
	public function __construct( $args = [] ) {
		$this->args = $args;
	}

	/**
	 * Retrieve popups.
	 *
	 * The query can be modified in two ways; either the action before the
	 * query is run, or the filter on the arguments (existing mainly for backwards
	 * compatibility).
	 *
	 * @access public
	 * @return object
	 */
	public function get_popups() {
		return pum_get_popups( $this->args );
	}
}

/**
 * Class PUM
 *
 * @depr