<?php
 
/**
 * ATTENTION: deactivate the cache in the page settings for the page in which you embed this template.
 * Fill in your Janolaw user identification:
 */
$USER_ID = '100290241';
$SHOP_ID = '857111';
$COUNTRY = 'DE'; // Country setting in ISO-format e.g. DE=Germany, GB=Great Britain

/**
 * DO NOT EDIT ANYTHING BELOW THIS LINE UNLESS YOU KNOW WHAT YOU ARE DOING!
 */
if(empty($USER_ID) || empty($SHOP_ID))
{
	echo '<p class="error">Please enter your Janolaw USER-ID or SHOP-ID</p>';
	return;
}
?>

<?php // fetch the document
$strResponse = file_get_contents("http://www.janolaw.de/agb-service/shops/$USER_ID/$SHOP_ID/".strtolower($COUNTRY)."/datasecurity_include.html");
if(empty($strResponse))
{
	echo '<p class="error">Failed to load document. Please check your Janolaw user identification</p>';
	return;
}

// include janolaw css in page <head>
$GLOBALS['TL_HEAD'][] = 
'<style>
.janolaw-paragraph {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
}
</style>';

// print output
echo \Contao\StringUtil::decodeEntities( utf8_encode($strResponse) );
?>