Submit
Path:
~
/
home
/
getwphos
/
public_html
/
ppine
/
wp-content
/
themes
/
takeout
/
plugins
/
gdpr-framework
/
File Content:
gdpr-framework.php
<?php /* The GDPR Framework support functions ------------------------------------------------------------------------------- */ // Theme init priorities: // 9 - register other filters (for installer, etc.) if ( ! function_exists( 'takeout_gdpr_framework_theme_setup9' ) ) { add_action( 'after_setup_theme', 'takeout_gdpr_framework_theme_setup9', 9 ); function takeout_gdpr_framework_theme_setup9() { if ( is_admin() ) { add_filter( 'takeout_filter_tgmpa_required_plugins', 'takeout_gdpr_framework_tgmpa_required_plugins' ); } } } // Filter to add in the required plugins list if ( ! function_exists( 'takeout_gdpr_framework_tgmpa_required_plugins' ) ) { //Handler of the add_filter('takeout_filter_tgmpa_required_plugins', 'takeout_gdpr_framework_tgmpa_required_plugins'); function takeout_gdpr_framework_tgmpa_required_plugins( $list = array() ) { if ( takeout_storage_isset( 'required_plugins', 'gdpr-framework' ) && takeout_storage_get_array( 'required_plugins', 'gdpr-framework', 'install' ) !== false ) { $list[] = array( 'name' => takeout_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( 'takeout_exists_gdpr_framework' ) ) { function takeout_exists_gdpr_framework() { return defined( 'GDPR_FRAMEWORK_VERSION' ); } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
gdpr-framework.php
1439 bytes
0644
gdpr-framework.png
6331 bytes
0644
N4ST4R_ID | Naxtarrr