[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Source view] [Print] [Project Stats]
WP_Theme_JSON_Schema class
File Size: | 229 lines (7 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
WP_Theme_JSON_Schema:: (6 methods):
migrate()
migrate_v1_to_v2()
migrate_v2_to_v3()
rename_paths()
rename_settings()
unset_setting_by_path()
Class: WP_Theme_JSON_Schema - X-Ref
Class that migrates a given theme.json structure to the latest schema.migrate( $theme_json, $origin = 'theme' ) X-Ref |
Function that migrates a given theme.json structure to the last version. return: array The structure in the last version. param: array $theme_json The structure to migrate. param: string $origin Optional. What source of data this object represents. |
migrate_v1_to_v2( $old ) X-Ref |
Removes the custom prefixes for a few properties that were part of v1: 'border.customRadius' => 'border.radius', 'spacing.customMargin' => 'spacing.margin', 'spacing.customPadding' => 'spacing.padding', 'typography.customLineHeight' => 'typography.lineHeight', return: array Data without the custom prefixes. param: array $old Data to migrate. |
migrate_v2_to_v3( $old, $origin ) X-Ref |
Migrates from v2 to v3. - Sets settings.typography.defaultFontSizes to false if settings.typography.fontSizes are defined. - Sets settings.spacing.defaultSpacingSizes to false if settings.spacing.spacingSizes are defined. - Prevents settings.spacing.spacingSizes from merging with settings.spacing.spacingScale by unsetting spacingScale when spacingSizes are defined. return: array Data with defaultFontSizes set to false. param: array $old Data to migrate. param: string $origin What source of data this object represents. |
rename_paths( $settings, $paths_to_rename ) X-Ref |
Processes the settings subtree. return: array The settings in the new format. param: array $settings Array to process. param: array $paths_to_rename Paths to rename. |
rename_settings( &$settings, $paths_to_rename ) X-Ref |
Processes a settings array, renaming or moving properties. param: array $settings Reference to settings either defaults or an individual block's. param: array $paths_to_rename Paths to rename. |
unset_setting_by_path( &$settings, $path ) X-Ref |
Removes a property from within the provided settings by its path. param: array $settings Reference to the current settings array. param: array $path Path to the property to be removed. |
Generated : Sat Nov 23 08:20:01 2024 | Cross-referenced by PHPXref |