22 lines
563 B
PHP
22 lines
563 B
PHP
<?php
|
|
// Prevent direct access to file
|
|
defined(security_key) or exit;
|
|
if (isset($_GET['download'])){
|
|
generatedPDF($privacy_statement_items,$privacy_text);
|
|
}
|
|
|
|
?>
|
|
<?=template_header($privacy_text,'')?>
|
|
|
|
<div class="products content-wrapper">
|
|
|
|
<?php
|
|
$view = '<h1>'.$privacy_statement_header;
|
|
$view .= '<a style="text-decoration: none;color:#555555;" href="'.url("index.php?page=privacy&download=download").'"> <i class="fa-solid fa-download"></i></a>';
|
|
$view .= '</h1>';
|
|
$view .= $privacy_statement_items;
|
|
|
|
echo $view;
|
|
?>
|
|
|
|
<?=template_footer()?>
|