Skip to content
Snippets Groups Projects
Commit a78d2654 authored by Liam Morland's avatar Liam Morland
Browse files

Issue #3173862: Rename LayoutBuilderIdsConfigureSection method

parent 8ab61e88
No related merge requests found
...@@ -40,14 +40,14 @@ class LayoutBuilderIdsConfigureSection implements EventSubscriberInterface { ...@@ -40,14 +40,14 @@ class LayoutBuilderIdsConfigureSection implements EventSubscriberInterface {
]; ];
// Add our custom submit handler. // Add our custom submit handler.
array_unshift($form['#submit'], [$this, 'layoutBuilderIdsSubmitForm']); array_unshift($form['#submit'], [$this, 'layoutBuilderIdsConfigureSectionSubmitForm']);
} }
} }
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function layoutBuilderIdsSubmitForm(array &$form, FormStateInterface $form_state) { public function layoutBuilderIdsConfigureSectionSubmitForm(array &$form, FormStateInterface $form_state) {
// Get the layout builder id from the form. // Get the layout builder id from the form.
$layout_builder_id = $form_state->getValue( $layout_builder_id = $form_state->getValue(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment