WP_Filesystem_ftpsockets::__construct()publicWP 2.5.0

Constructor.

Method of the class: WP_Filesystem_ftpsockets{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Filesystem_ftpsockets = new WP_Filesystem_ftpsockets();
$WP_Filesystem_ftpsockets->__construct( $opt );
$opt(array)
-
Default: ''

Changelog

Since 2.5.0 Introduced.

WP_Filesystem_ftpsockets::__construct() code WP 6.5.2

public function __construct( $opt = '' ) {
	$this->method = 'ftpsockets';
	$this->errors = new WP_Error();

	// Check if possible to use ftp functions.
	if ( ! require_once ABSPATH . 'wp-admin/includes/class-ftp.php' ) {
		return;
	}

	$this->ftp = new ftp();

	if ( empty( $opt['port'] ) ) {
		$this->options['port'] = 21;
	} else {
		$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'];
	}
}