| Server IP : 5.83.47.51 / Your IP : 216.73.217.19 Web Server : Apache System : Linux hosting.nxthost.com 5.14.0-687.44.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Sep 9 11:11:28 EDT 2026 x86_64 User : esteemro ( 1261) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/esteemro/public_html/wp-content/plugins/popup-maker/classes/ |
Upload File : |
<?php
/*******************************************************************************
* Copyright (c) 2019, Code Atlantic LLC
******************************************************************************/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Class PUM_Shortcodes
*
* This class maintains a global set of all registered PUM shortcodes.
*/
class PUM_Shortcodes {
/**
* @var PUM_Shortcodes Static Instance
*/
private static $instance;
/**
* @var array Holds array of registered $shortcode_tags => $shortcode_objects.
*/
private $shortcodes = array();
/**
* Main PUM_Shortcodes Instance
*
* @return PUM_Shortcodes
*/
public static function instance() {
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof PUM_Shortcodes ) ) {
self::$instance = new self;
}
return self::$instance;
}
/**
* Add a shortcode object to the collection.
*
* @param PUM_Shortcode $shortcode
*/
public function add_shortcode( PUM_Shortcode $shortcode ) {
$this->shortcodes[ $shortcode->tag() ] = $shortcode;
}
/**
* Get all shortcodes.
*
* @return array PUM_Shortcode
*/
public function get_shortcodes() {
return $this->shortcodes;
}
/**
* Get shortcode by tag.
*
* @param $tag
*
* @return bool|mixed
*/
public function get_shortcode( $tag ) {
return isset( $this->shortcodes[ $tag ] ) ? $this->shortcodes[ $tag ] : false;
}
}