Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
themes
/
beautique
/
plugins
/
gdpr-framework
/
✏️
Editing: gdpr-framework.php
<?php /* The GDPR Framework support functions ------------------------------------------------------------------------------- */ // Theme init priorities: // 9 - register other filters (for installer, etc.) if ( ! function_exists( 'beautique_gdpr_framework_feed_theme_setup9' ) ) { add_action( 'after_setup_theme', 'beautique_gdpr_framework_theme_setup9', 9 ); function beautique_gdpr_framework_theme_setup9() { if ( is_admin() ) { add_filter( 'beautique_filter_tgmpa_required_plugins', 'beautique_gdpr_framework_tgmpa_required_plugins' ); } } } // Filter to add in the required plugins list if ( ! function_exists( 'beautique_gdpr_framework_tgmpa_required_plugins' ) ) { //Handler of the add_filter('beautique_filter_tgmpa_required_plugins', 'beautique_gdpr_framework_tgmpa_required_plugins'); function beautique_gdpr_framework_tgmpa_required_plugins( $list = array() ) { if ( beautique_storage_isset( 'required_plugins', 'gdpr-framework' ) && beautique_storage_get_array( 'required_plugins', 'gdpr-framework', 'install' ) !== false ) { $list[] = array( 'name' => beautique_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( 'beautique_exists_gdpr_framework' ) ) { function beautique_exists_gdpr_framework() { return defined( 'GDPR_FRAMEWORK_VERSION' ); } }
💾 Save
❌ Cancel