| Current Path : /home/ereika83/www/wp-content/plugins/bbpowerpack/modules/pp-google-map/includes/ |
| Current File : /home/ereika83/www/wp-content/plugins/bbpowerpack/modules/pp-google-map/includes/frontend.php |
<?php
$map_error = false;
$style = '';
$api_url = pp_get_google_api_url();
if ( empty( $api_url ) ) {
$map_error = true;
$style = ' style="position: relative"';
}
?>
<div class="pp-google-map-wrapper"<?php echo $style; ?>>
<div class="pp-google-map">
<?php if ( true === $map_error ) { ?>
<div class='pp-google-map-error' style="line-height: 1.5em;padding: 50px;text-align: center;position: absolute;top: 50%;width: 90%;left: 50%;transform: translate(-50%,-50%);">
<span style=" line-height: 1.45em;">
<?php _e( 'To display Google Map, you need to set API key under ', 'bb-powerpack' ); ?>
<a href="<?php echo BB_PowerPack_Admin_Settings::get_form_action( '&tab=integration' ); ?>" class="pp-google-map-notice" target="_blank" rel="noopener">
<span style="font-weight:bold;"><?php _e( 'Integration Settings', 'bb-powerpack' ); ?></span>
</a>
</span>
</div>
<?php } ?>
</div>
</div>