Skip to content

Instantly share code, notes, and snippets.

@iso100
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save iso100/9814809 to your computer and use it in GitHub Desktop.

Select an option

Save iso100/9814809 to your computer and use it in GitHub Desktop.

Revisions

  1. iso100 revised this gist Mar 27, 2014. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions implicit_cookie_code.txt
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,4 @@
    <input type="hidden" id="COUNTRY_CODE" name="___COUNTRY_CODE" value="en_UK" />
    <script type="text/javascript" src="/ui3/scripts/cookieControl_integration_implicit.js"></script>
    <script type="text/javascript">

  2. iso100 created this gist Mar 27, 2014.
    37 changes: 37 additions & 0 deletions implicit_cookie_code.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,37 @@
    <script type="text/javascript" src="/ui3/scripts/cookieControl_integration_implicit.js"></script>
    <script type="text/javascript">

    cookieControl({
    locale:"",
    introText:'<p>We use cookies to ensure that we give you the best experience on our website. </p>',
    fullText:'<p> Some of these cookies are essential to make our site work and others help us to improve by giving us some insight into how the site is being used.By using our site you accept the terms of our <a href="http://www.pitneybowes.co.uk/Privacy-Statement.shtml" target="_blank" >Privacy Policy</a>.<p>You can swith cookies off at any time by changing your browser settings</p>',
    introText:"",
    fullText:"",
    locale:"",
    locale_arr:['fr_CA canada','en_US english us','fr_FR french','nl_NL netherlands','de_DE germany','fr-LU luxumburg','de_DE germany','de_AT austria','fr_CH Switzerland','no_NO Norway','sv_SE Sweden','da_DK Denmark','fi_FI Finland','nl_NL Netherlands','nl_BE Belgium','fr_LU Luxembourg','it_IT Italy','es_ES Spain','pt_PT Portugal','hu_HU Hungary'],
    position:'left', // left or right
    shape:'triangle', // triangle or diamond
    theme:'light', // light or dark
    startOpen:true,
    autoHide:6000,
    subdomains:false,
    protectedCookies: [], //list the cookies you do not want deleted ['analytics', 'twitter']
    consentModel:'implicit',
    onAccept:function(){ccAddAnalytics()},
    onReady:function(){},
    onCookiesAllowed:function(){ccAddAnalytics()},
    onCookiesNotAllowed:function(){},
    countries:'United Kingdom' // Or supply a list ['United Kingdom', 'Greece']
    });

    function ccAddAnalytics()
    {
    //alert("cookie creation goes here");

    jQuery.getScript("http://www.google-analytics.com/ga.js", function() {
    var GATracker = _gat._createTracker('');
    GATracker._trackPageview();
    });
    }
    jQuery.noConflict();
    </script>