Skip to content
Snippets Groups Projects

Issue #3347291: Combine field storage and field instance forms

Open Srishti Bankar requested to merge issue/drupal-3347291:3347291-combined-forms into 11.x
Compare and
31 files
+ 430
311
Compare changes
  • Side-by-side
  • Inline
Files
31
@@ -138,8 +138,8 @@ protected function init(FormStateInterface $form_state) {
*/
public function form(array $form, FormStateInterface $form_state) {
// Add #process and #after_build callbacks.
$form['#process'][] = '::processForm';
$form['#after_build'][] = '::afterBuild';
$form['#process'][] = [$this, 'processForm'];
$form['#after_build'][] = [$this, 'afterBuild'];
return $form;
}
Loading