b0y-101 Mini Shell


Current Path : E:/www2/kidsbangna/wp-content/plugins/popup-maker/includes/functions/
File Upload :
Current File : E:/www2/kidsbangna/wp-content/plugins/popup-maker/includes/functions/extensions.php

<?php
/**
 * Functions for extensions
 *
 * @package   PopupMaker
 * @copyright Copyright (c) 2024, Code Atlantic LLC
 */

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

/**
 * Gets an array of active extensions.
 *
 * @since 1.7.0
 *
 * @return mixed
 */
function pum_enabled_extensions() {
	return apply_filters( 'pum_enabled_extensions', [] );
}

/**
 * Checks if a specified extension is currently active.
 *
 * @since 1.7.0
 *
 * @param string $extension
 *
 * @return bool
 */
function pum_extension_enabled( $extension = '' ) {
	$enabled_extensions = pum_enabled_extensions();

	return ! empty( $extension ) && array_key_exists( $extension, $enabled_extensions );
}

Copyright © 2019 by b0y-101