32 lines
750 B
PHP
32 lines
750 B
PHP
<?php
|
|
/**
|
|
* .
|
|
*
|
|
* @var string[] $args .
|
|
*
|
|
* @package DHL
|
|
*/
|
|
|
|
?>
|
|
<html>
|
|
<title><?php esc_html_e( 'Wybierz punkt odbioru DHL (Parcelshop)', 'woocommerce-dhl' ); ?></title>
|
|
<body>
|
|
<iframe src="<?php echo esc_url( $args['map_url'] ); ?>"
|
|
style="position:fixed; top:0px; left:0px; bottom:0px; right:0px; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
|
|
</iframe>
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
function listenMessage( msg ) {
|
|
parent.dhl_set_dhl_parcelshop( JSON.parse( msg.data ) );
|
|
}
|
|
|
|
if ( window.addEventListener ) {
|
|
window.addEventListener( "message", listenMessage, false );
|
|
} else {
|
|
window.attachEvent( "onmessage", listenMessage );
|
|
}
|
|
/*]]>*/
|
|
</script>
|
|
</body>
|
|
</html>
|