Current File : /home/kelaby89/www/wp/wp-content/themes/nexio/plugins/gdpr-framework/gdpr-framework.php
<?php
/* The GDPR Framework support functions
------------------------------------------------------------------------------- */

// Theme init priorities:
// 9 - register other filters (for installer, etc.)
if ( ! function_exists( 'nexio_gdpr_framework_theme_setup9' ) ) {
	add_action( 'after_setup_theme', 'nexio_gdpr_framework_theme_setup9', 9 );
	function nexio_gdpr_framework_theme_setup9() {
		if ( is_admin() ) {
			add_filter( 'nexio_filter_tgmpa_required_plugins', 'nexio_gdpr_framework_tgmpa_required_plugins' );
		}
	}
}

// Filter to add in the required plugins list
if ( ! function_exists( 'nexio_gdpr_framework_tgmpa_required_plugins' ) ) {
	//Handler of the add_filter('nexio_filter_tgmpa_required_plugins',	'nexio_gdpr_framework_tgmpa_required_plugins');
	function nexio_gdpr_framework_tgmpa_required_plugins( $list = array() ) {
		if ( nexio_storage_isset( 'required_plugins', 'gdpr-framework' ) && nexio_storage_get_array( 'required_plugins', 'gdpr-framework', 'install' ) !== false ) {
			$list[] = array(
				'name'     => nexio_storage_get_array( 'required_plugins', 'gdpr-framework', 'title' ),
				'slug'     => 'gdpr-framework',
				'required' => false,
			);
		}
		return $list;
	}
}

// Check if this plugin installed and activated
if ( ! function_exists( 'nexio_exists_gdpr_framework' ) ) {
	function nexio_exists_gdpr_framework() {
		return defined( 'GDPR_FRAMEWORK_VERSION' );
	}
}
Page not found – Hello World !