diff --git a/src/Forms/GridField/GridFieldFilterHeader.php b/src/Forms/GridField/GridFieldFilterHeader.php index e84f1f34e2d..c8a27c57211 100755 --- a/src/Forms/GridField/GridFieldFilterHeader.php +++ b/src/Forms/GridField/GridFieldFilterHeader.php @@ -7,6 +7,7 @@ use SilverStripe\Control\Controller; use SilverStripe\Control\HTTPResponse; use SilverStripe\Core\ClassInfo; +use SilverStripe\Dev\Deprecation; use SilverStripe\Forms\CompositeField; use SilverStripe\Forms\FieldList; use SilverStripe\Forms\Form; @@ -279,9 +280,14 @@ public function setSearchContext(SearchContext $context): static * * @param GridField $gridfield * @return string + * @deprecated 5.4.0 Will be replaced with SilverStripe\ORM\Search\SearchContextForm::getSchemaData() */ public function getSearchFieldSchema(GridField $gridField) { + Deprecation::noticeWithNoReplacment( + '5.4.0', + 'Will be replaced with SilverStripe\ORM\Search\SearchContextForm::getSchemaData()' + ); $schemaUrl = Controller::join_links($gridField->Link(), 'schema/SearchForm'); $inst = singleton($gridField->getModelClass()); $context = $this->getSearchContext($gridField); @@ -385,9 +391,14 @@ public function getSearchForm(GridField $gridField) * * @param GridField $gridfield * @return HTTPResponse + * @deprecated 5.4.0 Will be replaced with SilverStripe\Forms\FormRequestHandler::getSchema() */ public function getSearchFormSchema(GridField $gridField) { + Deprecation::noticeWithNoReplacment( + '5.4.0', + 'Will be replaced with SilverStripe\Forms\FormRequestHandler::getSchema()' + ); $form = $this->getSearchForm($gridField); // If there are no filterable fields, return a 400 response @@ -395,7 +406,7 @@ public function getSearchFormSchema(GridField $gridField) return new HTTPResponse(_t(__CLASS__ . '.SearchFormFaliure', 'No search form could be generated'), 400); } - $parts = $gridField->getRequest()->getHeader(FormSchemaController::SCHEMA_HEADER); + $parts = $gridField->getRequest()->getHeader(FormSchema::SCHEMA_HEADER); $schemaID = $gridField->getRequest()->getURL(); $data = FormSchema::singleton() ->getMultipartSchema($parts, $schemaID, $form); diff --git a/src/Forms/Schema/FormSchema.php b/src/Forms/Schema/FormSchema.php index e0fa090afd2..e5376929ab3 100644 --- a/src/Forms/Schema/FormSchema.php +++ b/src/Forms/Schema/FormSchema.php @@ -40,6 +40,11 @@ class FormSchema */ const PART_AUTO = 'auto'; + /** + * Form schema header identifier + */ + public const SCHEMA_HEADER = 'X-Formschema-Request'; + /** * Returns a representation of the provided {@link Form} as structured data, * based on the request data.