Changes between Version 1 and Version 2 of Ticket #51188
- Timestamp:
- 08/29/2020 08:01:39 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #51188 – Description
v1 v2 46 46 {{{#!php 47 47 <?php 48 'consents' => [ 49 'functional' => [48 $consents = array( 49 'functional' => array( 50 50 'comprehensive' => true 51 ],52 'preferences' => [51 ), 52 'preferences' => array( 53 53 'comprehensive' => true 54 ],55 'anon_stats' => [54 ), 55 'anon_stats' => array( 56 56 'comprehensive' => true 57 ],58 'stats' => [57 ), 58 'stats' => array( 59 59 'comprehensive' => false 60 ],61 'marketing' => [60 ), 61 'marketing' => array( 62 62 'comprehensive' => false, 63 63 'newsletter' => true, 64 64 'targeted_ads' => false 65 ]66 ] 65 ) 66 ); 67 67 }}} 68 68