Your IP : 216.73.216.95


Current Path : /var/www/ooareogundevinitiative/wp-content/plugins/popup-maker/includes/functions/
Upload File :
Current File : /var/www/ooareogundevinitiative/wp-content/plugins/popup-maker/includes/functions/extensions.php

<?php
/*******************************************************************************
 * Copyright (c) 2019, 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', array() );
}

/**
 * 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 );
}