Make WordPress Core

Changes between Version 16 and Version 17 of Ticket #51092


Ignore:
Timestamp:
08/30/2020 05:09:57 PM (3 years ago)
Author:
carike
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #51092 – Description

    v16 v17  
    259259               "properties": {
    260260                  "auto": {
    261                      "description": "Whether or not the code writes to the database in relation to information that is not explicitly input by a user.",
    262                      "type": "boolean"
     261                     "type": "array",
     262                     "items": {
     263                        "description": "Whether or not the code writes to the database in relation to information that is not explicitly input by a user.",
     264                        "type": boolean
     265                     },
     266                     "additionalItems": false
    263267                  },
    264268                  "manual": {
    265                      "description": "Whether or not the code writes to the database that is not explicitly input by a user.",
    266                      "type": "boolean"
     269                     "type": "array",
     270                     "items": {
     271                        "description": "Whether or not the code writes information to the database that was explicitly input by the user.",
     272                        "type": boolean
     273                     },
     274                     "additionalItems": false
    267275                  }
    268276               }
     
    273281               "properties": {
    274282                  "auto": {
    275                      "description": "The number of Custom Post Types that are automatically created by the code without user intervention.",
    276                      "type": "integer",
    277                      "minimum": 0
     283                     "type": "array",
     284                     "items": {
     285                        "description": "Whether or not the code automatically creates any Custom Post Types without user intervention.",
     286                        "type": "boolean"
     287                     "additionalItems": {
     288                        "description": "The names of any Custom Post Types that are created automatically by the code without user intervention.",
     289                        "type": "string",
     290                     }
    278291                  },
    279292                  "manual": {
    280                      "description": "Whether or not the code allows for users to generate Custom Post Types.",
    281                      "type": "boolean"
     293                     "type": "array",
     294                     "items": {
     295                        "description": "Whether or not the code allows for users to generate Custom Post Types.",
     296                        "type": "boolean",
     297                     },
     298                     "additionalItems": false
    282299                  }
    283300               }
     
    288305               "properties": {
    289306                  "auto": {
    290                      "description": "The number of custom tables that are automatically created by the code without user intervention.",
    291                      "type": "integer",
    292                      "minimum": 0
     307                     "type": "array",
     308                     "items": {
     309                        "description": "Whether or not custom tables are automatically created by the code without user intervention.",
     310                        "type": "boolean"
     311                     },
     312                     "additionalItems": {
     313                        "description": The name of any custom tables that are automatically created by the code without user intervention.",
     314                        "type": "string"
     315                     }
    293316                  },
    294317                  "manual": {
    295                      "description": "Whether or not the code allows the user to create any custom tables.",
    296                      "type": "boolean"
     318                     "type": "array",
     319                     "items": {
     320                        "description": "Whether or not the code allows the user to create any custom tables.",
     321                        "type": "boolean
     322                     },
     323                     "additionalItems": false
    297324                  }
    298325               }
     
    496523}}}
    497524
     525**Acknowledgements:**
     526
    498527Thanks to Timothy for suggesting that we use a .json file instead of plugin and theme headers.
    499528Thanks to Swissspidy for information on i18n - see comment below.