You are here

public function MockFileTransfer::getSettingsForm in Zircon Profile 8

Same name in this branch
  1. 8 core/modules/system/tests/modules/system_test/src/MockFileTransfer.php \Drupal\system_test\MockFileTransfer::getSettingsForm()
  2. 8 core/modules/update/tests/modules/update_test/src/MockFileTransfer.php \Drupal\update_test\MockFileTransfer::getSettingsForm()
Same name and namespace in other branches
  1. 8.0 core/modules/system/tests/modules/system_test/src/MockFileTransfer.php \Drupal\system_test\MockFileTransfer::getSettingsForm()

Returns a settings form with a text field to input a username.

File

core/modules/system/tests/modules/system_test/src/MockFileTransfer.php, line 28
Contains \Drupal\system_test\MockFileTransfer.

Class

MockFileTransfer
Mock FileTransfer object to test the settings form functionality.

Namespace

Drupal\system_test

Code

public function getSettingsForm() {
  $form = array();
  $form['system_test_username'] = array(
    '#type' => 'textfield',
    '#title' => t('System Test Username'),
  );
  return $form;
}