diff --git a/core/modules/update/src/Form/UpdateForm.php b/core/modules/update/src/Form/UpdateForm.php deleted file mode 100644 index 8f416c1..0000000 --- a/core/modules/update/src/Form/UpdateForm.php +++ /dev/null @@ -1,84 +0,0 @@ -getForm('update_manager_install_form', 'report'); - } - - /** - * Wraps update_manager_update_form(). - * - * @todo Remove update_manager_update_form(). - */ - public function reportUpdate() { - module_load_include('manager.inc', 'update'); - return \Drupal::formBuilder()->getForm('update_manager_update_form', 'report'); - } - - /** - * Wraps update_manager_install_form(). - * - * @todo Remove update_manager_install_form(). - */ - public function moduleInstall() { - module_load_include('manager.inc', 'update'); - return \Drupal::formBuilder()->getForm('update_manager_install_form', 'module'); - } - - /** - * Wraps update_manager_update_form(). - * - * @todo Remove update_manager_update_form(). - */ - public function moduleUpdate() { - module_load_include('manager.inc', 'update'); - return \Drupal::formBuilder()->getForm('update_manager_update_form', 'module'); - } - - /** - * Wraps update_manager_install_form(). - * - * @todo Remove update_manager_install_form(). - */ - public function themeInstall() { - module_load_include('manager.inc', 'update'); - return \Drupal::formBuilder()->getForm('update_manager_install_form', 'theme'); - } - - /** - * Wraps update_manager_update_form(). - * - * @todo Remove update_manager_update_form(). - */ - public function themeUpdate() { - module_load_include('manager.inc', 'update'); - return \Drupal::formBuilder()->getForm('update_manager_update_form', 'theme'); - } - - /** - * Wraps update_manager_update_ready_form(). - * - * @todo Remove update_manager_update_ready_form(). - */ - public function confirmUpdates() { - module_load_include('manager.inc', 'update'); - return \Drupal::formBuilder()->getForm('update_manager_update_ready_form'); - } - -}