Files
WEBtomaste/Atomaste Reference/public_html/wp-content/plugins/complianz-gdpr/integrations/services/openstreetmaps.php

22 lines
523 B
PHP
Raw Normal View History

2025-12-10 12:17:30 -05:00
<?php
defined( 'ABSPATH' ) or die( "you do not have access to this page!" );
add_filter( 'cmplz_known_script_tags', 'cmplz_openstreetmaps_iframetags' );
function cmplz_openstreetmaps_iframetags( $tags ) {
$tags[] = array(
'name' => 'openstreetmaps',
'placeholder' => 'openstreetmaps',
'category' => 'marketing',
'urls' => array(
'openstreetmap.org',
),
);
return $tags;
}
/**
* function to let complianz detect this integration as having placeholders.
*/
function cmplz_openstreetmaps_placeholder() {}