sidebar
3 years ago
appearance.php
4 years ago
date-custom-range-filter.php
4 years ago
demo-popup.php
4 years ago
demographic-chart.php
4 years ago
demographic.php
4 years ago
exclusions.php
4 years ago
ga4-dashboard.php
3 years ago
ga4-demographic-chart.php
3 years ago
gdpr-config.php
4 years ago
gdpr.php
4 years ago
purposes.php
4 years ago
purposes.php
214 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Purposes view. |
| 4 | * |
| 5 | * @package GoogleAnalytics |
| 6 | */ |
| 7 | |
| 8 | ?> |
| 9 | <h3> |
| 10 | <?php esc_html_e( 'WHY ARE YOU COLLECTING CUSTOMER DATA?', 'googleanalytics' ); ?> |
| 11 | </h3> |
| 12 | |
| 13 | <div id="publisher-purpose" class="switch"> |
| 14 | <div class="empty-choices col-md-12"> |
| 15 | <a id="see-st-choices" class="st-rc-link medium-btn col-md-6" href="#">See Suggested Choices</a> |
| 16 | <a id="clear-choices" class="st-rc-link medium-btn col-md-6" href="#">Clear Choices</a> |
| 17 | </div> |
| 18 | <div class="purpose-item"> |
| 19 | <div class="title"> |
| 20 | <?php |
| 21 | esc_html_e( |
| 22 | '1) Store and/or access information on a device (Do you collect information on users on your site through cookies or site identifiers?)', |
| 23 | 'googleanalytics' |
| 24 | ); |
| 25 | ?> |
| 26 | </div> |
| 27 | <label> |
| 28 | <?php esc_html_e( 'Consent', 'googleanalytics' ); ?> |
| 29 | <input data-id="1" type="checkbox" name="purposes[1]" value="consent" checked/> |
| 30 | <span class="lever"></span> |
| 31 | </label> |
| 32 | </div> |
| 33 | <div class="purpose-item"> |
| 34 | <div class="title"> |
| 35 | <?php |
| 36 | esc_html_e( |
| 37 | '2) Select basic ads (Do you serve ads on your site?)', |
| 38 | 'googleanalytics' |
| 39 | ); |
| 40 | ?> |
| 41 | </div> |
| 42 | <label> |
| 43 | <?php esc_html_e( 'Consent', 'googleanalytics' ); ?> |
| 44 | <input data-id="2" type="radio" name="purposes[2]" value="consent" checked/> |
| 45 | <span class="lever"></span> |
| 46 | </label> |
| 47 | <label> |
| 48 | <?php esc_html_e( 'Legitimate Interest', 'googleanalytics' ); ?> |
| 49 | <input data-id="2" type="radio" name="purposes[2]" value="legitimate"/> |
| 50 | <span class="lever"></span> |
| 51 | </label> |
| 52 | </div> |
| 53 | <div class="purpose-item"> |
| 54 | <div class="title"> |
| 55 | <?php |
| 56 | esc_html_e( |
| 57 | '3) Create a personalised ads profile (Do you create personalised advertising profiles associated with users on your site (ie: profiles based on demographic information, location, user’s activity)?)', |
| 58 | 'googleanalytics' |
| 59 | ); |
| 60 | ?> |
| 61 | </div> |
| 62 | <label> |
| 63 | <?php esc_html_e( 'Consent', 'googleanalytics' ); ?> |
| 64 | <input data-id="3" type="radio" name="purposes[3]" value="consent" checked/> |
| 65 | <span class="lever"></span> |
| 66 | </label> |
| 67 | <label> |
| 68 | <?php esc_html_e( 'Legitimate Interest', 'googleanalytics' ); ?> |
| 69 | <input data-id="3" type="radio" name="purposes[3]" value="legitimate"/> |
| 70 | <span class="lever"></span> |
| 71 | </label> |
| 72 | </div> |
| 73 | <div class="purpose-item"> |
| 74 | <div class="title"> |
| 75 | <?php |
| 76 | esc_html_e( |
| 77 | '4) Select personalised ads (Do you show ads to users based on this user profile)', |
| 78 | 'googleanalytics' |
| 79 | ); |
| 80 | ?> |
| 81 | </div> |
| 82 | <label> |
| 83 | <?php esc_html_e( 'Consent', 'googleanalytics' ); ?> |
| 84 | <input data-id="4" type="radio" name="purposes[4]" value="consent" checked/> |
| 85 | <span class="lever"></span> |
| 86 | </label> |
| 87 | <label> |
| 88 | <?php esc_html_e( 'Legitimate Interest', 'googleanalytics' ); ?> |
| 89 | <input data-id="4" type="radio" name="purposes[4]" value="legitimate"/> |
| 90 | <span class="lever"></span> |
| 91 | </label> |
| 92 | </div> |
| 93 | <div class="purpose-item"> |
| 94 | <div class="title"> |
| 95 | <?php |
| 96 | esc_html_e( |
| 97 | '5) Create a personalised content profile (Do you build a personalized content profile associated with users on your site based on the type of content they have viewed?)', |
| 98 | 'googleanalytics' |
| 99 | ); |
| 100 | ?> |
| 101 | </div> |
| 102 | <label> |
| 103 | <?php esc_html_e( 'Consent', 'googleanalytics' ); ?> |
| 104 | <input data-id="5" type="radio" name="purposes[5]" value="consent" checked /> |
| 105 | <span class="lever"></span> |
| 106 | </label> |
| 107 | <label> |
| 108 | <?php esc_html_e( 'Legitimate Interest', 'googleanalytics' ); ?> |
| 109 | <input data-id="5" type="radio" name="purposes[5]" value="legitimate"/> |
| 110 | <span class="lever"></span> |
| 111 | </label> |
| 112 | </div> |
| 113 | <div class="purpose-item"> |
| 114 | <div class="title"> |
| 115 | <?php |
| 116 | esc_html_e( |
| 117 | '6) Select personalised content (Do you serve content to the user on your site based on your recorded content interests)', |
| 118 | 'googleanalytics' |
| 119 | ); |
| 120 | ?> |
| 121 | </div> |
| 122 | <label> |
| 123 | <?php esc_html_e( 'Consent', 'googleanalytics' ); ?> |
| 124 | <input data-id="6" type="radio" name="purposes[6]" value="consent" checked /> |
| 125 | <span class="lever"></span> |
| 126 | </label> |
| 127 | <label> |
| 128 | <?php esc_html_e( 'Legitimate Interest', 'googleanalytics' ); ?> |
| 129 | <input data-id="6" type="radio" name="purposes[6]" value="legitimate"/> |
| 130 | <span class="lever"></span> |
| 131 | </label> |
| 132 | </div> |
| 133 | <div class="purpose-item"> |
| 134 | <div class="title"> |
| 135 | <?php |
| 136 | esc_html_e( |
| 137 | '7) Measure ad performance (Do you measure the performance of advertisements on your site)', |
| 138 | 'googleanalytics' |
| 139 | ); |
| 140 | ?> |
| 141 | </div> |
| 142 | <label> |
| 143 | <?php esc_html_e( 'Consent', 'googleanalytics' ); ?> |
| 144 | <input data-id="7" type="radio" name="purposes[7]" value="consent" checked/> |
| 145 | <span class="lever"></span> |
| 146 | </label> |
| 147 | <label> |
| 148 | <?php esc_html_e( 'Legitimate Interest', 'googleanalytics' ); ?> |
| 149 | <input data-id="7" type="radio" name="purposes[7]" value="legitimate"/> |
| 150 | <span class="lever"></span> |
| 151 | </label> |
| 152 | </div> |
| 153 | <div class="purpose-item"> |
| 154 | <div class="title"> |
| 155 | <?php |
| 156 | esc_html_e( |
| 157 | '8) Measure content performance (Do you measure the performance of content served to your site visitors?)', |
| 158 | 'googleanalytics' |
| 159 | ); |
| 160 | ?> |
| 161 | </div> |
| 162 | <label> |
| 163 | <?php esc_html_e( 'Consent', 'googleanalytics' ); ?> |
| 164 | <input data-id="8" type="radio" name="purposes[8]" value="consent" checked/> |
| 165 | <span class="lever"></span> |
| 166 | </label> |
| 167 | <label> |
| 168 | <?php esc_html_e( 'Legitimate Interest', 'googleanalytics' ); ?> |
| 169 | <input data-id="8" type="radio" name="purposes[8]" value="legitimate"/> |
| 170 | <span class="lever"></span> |
| 171 | </label> |
| 172 | </div> |
| 173 | <div class="purpose-item"> |
| 174 | <div class="title"> |
| 175 | <?php |
| 176 | esc_html_e( |
| 177 | '9) Apply market research to generate audience insights (Do you aggregate reporting on the ads or content show to your site visitors to advertisers)', |
| 178 | 'googleanalytics' |
| 179 | ); |
| 180 | ?> |
| 181 | </div> |
| 182 | <label> |
| 183 | <?php esc_html_e( 'Consent', 'googleanalytics' ); ?> |
| 184 | <input data-id="9" type="radio" name="purposes[9]" value="consent" checked/> |
| 185 | <span class="lever"></span> |
| 186 | </label> |
| 187 | <label> |
| 188 | <?php esc_html_e( 'Legitimate Interest', 'googleanalytics' ); ?> |
| 189 | <input data-id="9" type="radio" name="purposes[9]" value="legitimate"/> |
| 190 | <span class="lever"></span> |
| 191 | </label> |
| 192 | </div> |
| 193 | <div class="purpose-item"> |
| 194 | <div class="title"> |
| 195 | <?php |
| 196 | esc_html_e( |
| 197 | '10) Develop and improve products (Do you use data collected on your site visitors to improve your systems or software or create new products?)', |
| 198 | 'googleanalytics' |
| 199 | ); |
| 200 | ?> |
| 201 | </div> |
| 202 | <label> |
| 203 | <?php esc_html_e( 'Consent', 'googleanalytics' ); ?> |
| 204 | <input data-id="10" type="radio" name="purposes[10]" value="consent" checked/> |
| 205 | <span class="lever"></span> |
| 206 | </label> |
| 207 | <label> |
| 208 | <?php esc_html_e( 'Legitimate Interest', 'googleanalytics' ); ?> |
| 209 | <input data-id="10" type="radio" name="purposes[10]" value="legitimate"/> |
| 210 | <span class="lever"></span> |
| 211 | </label> |
| 212 | </div> |
| 213 | </div> |
| 214 |