Make WordPress Core

Changes between Initial Version and Version 2 of Ticket #51156


Ignore:
Timestamp:
08/27/2020 01:58:33 PM (6 years ago)
Author:
carike
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #51156 – Description

    initial v2  
    2222
    2323**The Solution:**
     24
     25Illustrative example: Compatibility
     26
     27In this example, a plugin author would like to disclose which Privacy Tools they, in good faith, believe that they are compatible with.
     28The author would include the following in a file named disclosures.json in the plugin's main folder to indicate that:
     29- The code is compatible with Core's tool to export Protected Personal Information;
     30- The code is compatible with Core's tool to erase Protected Personal Information;
     31- The code is compatible with the Consent API;
     32- The code is compatible with the Disclosures Tab;
     33- The code is not compatible with the Permissions Tab.
     34
     35{{{#!php
     36<?php
     37{
     38   "compatibility": {
     39      "ppiExport": [
     40         TRUE
     41      ],
     42      "ppiErasure": [
     43         TRUE
     44      ],
     45      "consentAPI": [
     46         TRUE
     47      ],
     48      "disclosuresTab": [
     49         TRUE
     50      ],
     51      "permissionsTab": [
     52         FALSE
     53      ]
     54   }
     55}
     56}}}
    2457
    2558Illustrative example: Monetization