<?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)."/legaldetails_include.html");
if(empty($strResponse))
{
	echo '<p class="error">Failed to load document. Please check your Janolaw user identification</p>';
	return;
}

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