Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #51188


Ignore:
Timestamp:
08/29/2020 08:01:39 PM (5 years ago)
Author:
carike
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #51188 – Description

    v1 v2  
    4646{{{#!php
    4747<?php
    48 'consents' => [
    49    'functional' => [
     48$consents = array(
     49   'functional' => array(
    5050      'comprehensive' => true
    51    ],
    52    'preferences' => [
     51   ),
     52   'preferences' => array(
    5353      'comprehensive' => true
    54    ],
    55    'anon_stats' => [
     54   ),
     55   'anon_stats' => array(
    5656     'comprehensive' => true
    57    ],
    58    'stats' => [
     57   ),
     58   'stats' => array(
    5959      'comprehensive' => false
    60    ],
    61    'marketing' => [
     60   ),
     61   'marketing' => array(
    6262      'comprehensive' => false,
    6363      'newsletter' => true,
    6464      'targeted_ads' => false
    65    ]
    66 ]
     65   )
     66);
    6767}}}
    6868