Removed additional information that will now be added to a page linked from the cooki... feature/themes
authorChuck Scott <cscott@gaslightmedia.com>
Tue, 3 Sep 2019 17:21:13 +0000 (13:21 -0400)
committerChuck Scott <cscott@gaslightmedia.com>
Tue, 3 Sep 2019 17:21:13 +0000 (13:21 -0400)
models/frontCookiePopUp.php

index cc94712..761ecf8 100755 (executable)
@@ -66,90 +66,11 @@ if ( $serverstatsConfig['show_bottom'] ) {
 <div id="cookieNoticeBox" class="opensearchserver.ignore">
     <div class="title">Please read!<br></div>
 <?php if ($serverstatsConfig['cookie_message'] != '') { echo '<p>'.nl2br($serverstatsConfig['cookie_message']).'</p>'; }  ?>
+
     <p>
-        <a id="showMorePrivacyInfo" class="button">Show more</a>
         <a id="cookieNoticeBoxClose" class="button">Got it!</a>
     </p>
-    <div id="cookieMoreInfo" style="display: none; font-size: .8rem;">
-<?php if ($serverstatsConfig['cookie_opt_gdpr']) { ?>
-        <p>
-            <b>GDPR:</b> The EU GDPR legislation obligates us to tell you how we use information you supply through
-            this Website. We intentionally limit the information we ask you to supply to what is absolutely
-            necessary to provide the service you request. Unless otherwise stated, we don't share any supplied information
-            with any other person or organization other than as required and as authorized by you. Payment related
-            information you supply will only be used to complete a transaction and will not be stored on our systems.
-        </p>
-<?php } ?>
-<?php if ($serverstatsConfig['cookie_opt_access_logs']) { ?>
-        <p>
-            <b>ACCESS LOGS:</b> We retain access logs entries for a certain period of time for the sole purpose of
-            ensuring security of our systems and compliance of acceptable use by users of this site. We don't share
-            log entries with anyone unless obligated to do so by way of a lawful request from a law enforcement
-            agency or court with appropriate jurisdiction.
-        </p>
-<?php } ?>
-<?php if ($serverstatsConfig['cookie_opt_permanent']) { ?>
-        <p>
-            <b>PERMANENT COOKIES:</b> This Website uses "Permanent Cookies" that are retained by your Web Browser.
-            This type of Cookie is used to help you when you return to this Website at a later time. If you're using
-            a public computer, be sure to delete all cookies before closing the Browser.
-        </p>
-<?php } ?>
-<?php if ($serverstatsConfig['cookie_opt_tracking']) { ?>
-        <p>
-            <b>TRACKING:</b> We may track where you go within this site. This helps us provide you with relevant
-            information and to evaluate how we may improve the site. We don't share this tracking information with anyone
-            unless otherwise stated here.
-        </p>
-<?php } ?>
-<?php if ($serverstatsConfig['cookie_opt_shared_tracking']) { ?>
-        <p>
-            <b>SHARED TRACKING:</b> This site may contain third-party shared tracking features. These features may
-            collect and share tracking information with affiliated Websites and advertisers to help them provide you with more relevant
-            information. This site may also contain third-party shared tracking features that permit a third-party
-            to collect and report traffic statistics to the owner of this site. We don't permit shared tracking
-            to include personal information of any user.
-        </p>
-<?php } ?>
-<?php if ($serverstatsConfig['cookie_opt_https']) { ?>
-        <p>
-            <b>HTTPS:</b> This Website uses the secure "HTTPS" protocol for all pages and content. This makes it very
-            difficult for anyone who may tap into Internet traffic to read what you submit and what is being sent
-            back to you. If you feel that the possibility of someone intercepting information you submit or knowledge
-            of the pages you access presents a significant risk to you, please don't use this Website.
-        </p>
-<?php } ?>
-<?php if ($serverstatsConfig['cookie_opt_logged_in']) { ?>
-        <p>
-            <b>LOGGED IN USERS:</b> We don't store passwords you use to log in as plain text, instead they're encrypted
-            before being stored in our systems. When you enter that password again to log in, we encrypt that and and
-            match it to the encrypted password that had been stored. There is no way to decrypt the stored passwords,
-            but it may be possilbe for others to guess simple passwords. You should always use more complex passwords
-            that don't include words or names people would associate with you. You should also try to avoid using the
-            same password for everything you log into and should not make those passwords easily accessible to anyone else.
-        </p>
-<?php } ?>
-<?php if ($serverstatsConfig['cookie_opt_forms']) { ?>
-        <p>
-            <b>FORMS:</b> Personal information requested in forms on this site is limited to what is required to provide
-            you with the information and services you request. Please don't provide additional personal information in
-            these forms that is not requested. If you are uncomfortable with submitting any requested information, please
-            call or write to us directly using the address and phone numbers on this site. We don't supply any of the
-            information you provide to any other individual or organization unless you check a box in the submission form
-            specifically authorizing us to do so.
-        </p>
-<?php } ?>
-<?php if ($serverstatsConfig['cookie_opt_payment']) { ?>
-        <p>
-            <b>PAYMENT INFORMATION:</b> We only use the payment information you provide to complete a paid transaction.
-             We don't retain any payment information beyond that point. If you check a box asking us to store credit
-             card or similar information for future use, we pass that request on to the credit card processing service
-             and they store that information on their systems. All we store on our systems is a "token" that can only
-             be used to process another authorized transaction on your behalf through this Website with the same credit
-             card processing service.
-         </p>
-<?php } ?>
-     </div>
+
 </div>
 
 <script type="text/javascript">
@@ -181,20 +102,6 @@ if ( $serverstatsConfig['show_bottom'] ) {
             $("#cookieNoticeBox").show();
         }
 
-        // Do show/hide of additional information
-        var showMorePrivacyInfo = false;
-        $("#showMorePrivacyInfo").on('click', function() {
-            if (showMorePrivacyInfo) {
-                $('#cookieMoreInfo').hide();
-                $('#showMorePrivacyInfo').html('Show more');
-                showMorePrivacyInfo = false;
-            } else {
-                $('#cookieMoreInfo').show();
-                $('#showMorePrivacyInfo').html('Show less');
-                showMorePrivacyInfo = true;
-            }
-        });
-
         // If user clicks "Got It!" then set the cookie to now show it again for a while.
         $("#cookieNoticeBoxClose").on('click', function() {
             $("#cookieNoticeBox").hide();