Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
themes
/
beautique
/
skins
/
default
/
plugins
/
devvn-image-hotspot
/
✏️
Editing: devvn-image-hotspot.php
<?php /* Image Hotspot by DevVN support functions ------------------------------------------------------------------------------- */ // Theme init priorities: // 9 - register other filters (for installer, etc.) if ( ! function_exists( 'beautique_devvn_image_hotspot_theme_setup9' ) ) { add_action( 'after_setup_theme', 'beautique_devvn_image_hotspot_theme_setup9', 9 ); function beautique_devvn_image_hotspot_theme_setup9() { if ( is_admin() ) { add_filter( 'beautique_filter_tgmpa_required_plugins', 'beautique_devvn_image_hotspot_tgmpa_required_plugins' ); } } } // Filter to add in the required plugins list if ( ! function_exists( 'beautique_devvn_image_hotspot_tgmpa_required_plugins' ) ) { //Handler of the add_filter('beautique_filter_tgmpa_required_plugins', 'beautique_devvn_image_hotspot_tgmpa_required_plugins'); function beautique_devvn_image_hotspot_tgmpa_required_plugins( $list = array() ) { if ( beautique_storage_isset( 'required_plugins', 'devvn-image-hotspot' ) && beautique_storage_get_array( 'required_plugins', 'devvn-image-hotspot', 'install' ) !== false ) { $list[] = array( 'name' => beautique_storage_get_array( 'required_plugins', 'devvn-image-hotspot', 'title' ), 'slug' => 'devvn-image-hotspot', 'required' => false, ); } return $list; } } // Check if this plugin installed and activated if ( ! function_exists( 'beautique_exists_devvn_image_hotspot' ) ) { function beautique_exists_devvn_image_hotspot() { return defined( 'DEVVN_IHOTSPOT_DEV_MOD' ); } }
💾 Save
❌ Cancel