Constructor.
Parameters
$optarrayoptional- Array of connection options.
hostnamestringRequired. FTP server hostname.usernamestringRequired. FTP username.passwordstringRequired. FTP password.portintOptional. FTP server port. Default 21.
Default:
null
Source
public function __construct( $opt = null ) {
$this->method = 'ftpsockets';
$this->errors = new WP_Error();
$this->options = array(
'port' => 21,
'hostname' => '',
'username' => '',
'password' => '',
);
// Check if possible to use ftp functions.
if ( ! require_once ABSPATH . 'wp-admin/includes/class-ftp.php' ) {
return;
}
$this->ftp = new ftp();
if ( ! is_array( $opt ) ) {
$opt = array();
}
if ( ! empty( $opt['port'] ) ) {
$this->options['port'] = (int) $opt['port'];
}
if ( empty( $opt['hostname'] ) ) {
$this->errors->add( 'empty_hostname', __( 'FTP hostname is required' ) );
} else {
$this->options['hostname'] = $opt['hostname'];
}
// Check if the options provided are OK.
if ( empty( $opt['username'] ) ) {
$this->errors->add( 'empty_username', __( 'FTP username is required' ) );
} else {
$this->options['username'] = $opt['username'];
}
if ( empty( $opt['password'] ) ) {
$this->errors->add( 'empty_password', __( 'FTP password is required' ) );
} else {
$this->options['password'] = $opt['password'];
}
}
Changelog
| Version | Description |
|---|---|
| 2.5.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.