diff --git a/system/blueprints/config/site.yaml b/system/blueprints/config/site.yaml index 485f2c375..149dcdf4b 100644 --- a/system/blueprints/config/site.yaml +++ b/system/blueprints/config/site.yaml @@ -3,7 +3,7 @@ form: validation: loose fields: - content: + section_content: type: section title: PLUGIN_ADMIN.DEFAULTS underline: true @@ -39,7 +39,7 @@ form: validate: type: commalist - summary: + section_summary: type: section title: PLUGIN_ADMIN.PAGE_SUMMARY underline: true @@ -82,7 +82,7 @@ form: label: PLUGIN_ADMIN.DELIMITER help: PLUGIN_ADMIN.DELIMITER_HELP - metadata: + section_metadata: type: section title: PLUGIN_ADMIN.METADATA underline: true @@ -95,7 +95,7 @@ form: placeholder_key: PLUGIN_ADMIN.METADATA_KEY placeholder_value: PLUGIN_ADMIN.METADATA_VALUE - routes: + section_routes: type: section title: PLUGIN_ADMIN.REDIRECTS_AND_ROUTES underline: true diff --git a/system/src/Grav/Common/Data/Blueprint.php b/system/src/Grav/Common/Data/Blueprint.php index 8b110201b..5bbf3b70a 100644 --- a/system/src/Grav/Common/Data/Blueprint.php +++ b/system/src/Grav/Common/Data/Blueprint.php @@ -129,6 +129,7 @@ class Blueprint extends BaseBlueprints implements ExportInterface */ public function extend(Blueprint $extends, $append = false) { + throw new \Exception('Extend is not implemented yet'); // FIXME: Currently not working... $blueprints = $append ? $this->form : $extends->fields(); $appended = $append ? $extends->fields() : $this->form;