From 56475873b2388c13a85f3732eba440c3dda722d9 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Sun, 9 Aug 2015 01:28:30 +0100 Subject: [PATCH] Issue #2547679 by dazz: Remove FileAjaxForm as its not used anymore --- core/modules/system/src/FileAjaxForm.php | 122 ----------------------- 1 file changed, 122 deletions(-) delete mode 100644 core/modules/system/src/FileAjaxForm.php diff --git a/core/modules/system/src/FileAjaxForm.php b/core/modules/system/src/FileAjaxForm.php deleted file mode 100644 index 0400f7fce01..00000000000 --- a/core/modules/system/src/FileAjaxForm.php +++ /dev/null @@ -1,122 +0,0 @@ -form = $form; - $this->formState = $form_state; - $this->formId = $form_id; - $this->formBuildId = $form_build_id; - $this->commands = $commands; - } - - /** - * Gets all AJAX commands. - * - * @return \Drupal\Core\Ajax\CommandInterface[] - * Returns all previously added AJAX commands. - */ - public function getCommands() { - return $this->commands; - } - - /** - * Gets the form definition. - * - * @return array - */ - public function getForm() { - return $this->form; - } - - /** - * Gets the unique form build ID. - * - * @return string - */ - public function getFormBuildId() { - return $this->formBuildId; - } - - /** - * Gets the unique form ID. - * - * @return string - */ - public function getFormId() { - return $this->formId; - } - - /** - * Gets the form state. - * - * @return \Drupal\Core\Form\FormStateInterface - */ - public function getFormState() { - return $this->formState; - } - -}