1 filetransfer.inc | static FileTransfer::factory($jail, $settings) |
Classes that extend this class must override the factory() static method.
Parameters
string $jail: The full path where all file operations performed by this object will be restricted to. This prevents the FileTransfer classes from being able to touch other parts of the filesystem.
array $settings: An array of connection settings for the FileTransfer subclass. If the getSettingsForm() method uses any nested settings, the same structure will be assumed here.
Return value
FileTransfer: New instance of the appropriate FileTransfer subclass.
Throws
File
- core/
includes/ filetransfer/ filetransfer.inc, line 44 - Base FileTransfer class.
Class
- FileTransfer
- @file Base FileTransfer class.
Code
static function factory($jail, $settings) {
throw new FileTransferException('FileTransfer::factory() static method not overridden by FileTransfer subclass.');
}