
| Current Path : /var/www/html/rocksensor/web/core/modules/system/tests/modules/system_test/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor/web/core/modules/system/tests/modules/system_test/src/MockFileTransfer.php |
<?php
namespace Drupal\system_test;
/**
* Mock FileTransfer object to test the settings form functionality.
*/
class MockFileTransfer {
/**
* Returns a Drupal\system_test\MockFileTransfer object.
*
* @return \Drupal\system_test\MockFileTransfer
* A new Drupal\system_test\MockFileTransfer object.
*/
public static function factory() {
return new MockFileTransfer();
}
/**
* Returns a settings form with a text field to input a username.
*/
public function getSettingsForm() {
$form = [];
$form['system_test_username'] = [
'#type' => 'textfield',
'#title' => t('System Test Username'),
];
return $form;
}
}