%PDF- %PDF-
Direktori : /home/tradesc/www/relax/wp-content/plugins/complianz-gdpr/integrations/plugins/ |
Current File : /home/tradesc/www/relax/wp-content/plugins/complianz-gdpr/integrations/plugins/map-multi-marker.php |
<?php /** * add the dependency * $deps['wait-for-this-script'] = 'script-that-should-wait'; */ if ( !defined('CMPLZ_GOOGLE_MAPS_INTEGRATION_ACTIVE') ) define('CMPLZ_GOOGLE_MAPS_INTEGRATION_ACTIVE', true); add_filter( 'cmplz_known_script_tags', 'cmplz_multimarker_script' ); /** * Block the scripts. * initMap can also be something else. That's the problem with custom maps :) * * @param $tags * * @return array */ function cmplz_multimarker_script( $tags ) { $tags[] = array( 'name' => 'google-maps', 'category' => 'marketing', 'placeholder' => 'google-maps', 'urls' => array( 'maps.googleapis.com/maps/api/js', 'map-multi-marker/asset/js/', ), 'enable_placeholder' => '1', 'placeholder_class' => "map-multi-marker", 'enable_dependency' => '1', 'dependency' => [ //'wait-for-this-script' => 'script-that-should-wait' 'maps.googleapis.com/maps/api/js' => 'map-multi-marker/asset/js/', ], ); return $tags; } /** * Add services to the list of detected items, so it will get set as default, and will be added to the notice about it * * @param $services * * @return array */ function cmplz_multimarker_detected_services( $services ) { if ( ! in_array( 'google-maps', $services ) ) { $services[] = 'google-maps'; } return $services; } add_filter( 'cmplz_detected_services', 'cmplz_multimarker_detected_services' );