function system_filetransfer_info

Same name and namespace in other branches
  1. 7.x modules/system/system.module \system_filetransfer_info()
  2. 9 core/modules/system/system.module \system_filetransfer_info()
  3. 8.9.x core/modules/system/system.module \system_filetransfer_info()

Implements hook_filetransfer_info().

File

core/modules/system/system.module, line 562

Code

function system_filetransfer_info() {
  $backends = [];
  // This is the default, will be available on most systems.
  if (function_exists('ftp_connect')) {
    $backends['ftp'] = [
      'title' => t('FTP'),
      'class' => 'Drupal\\Core\\FileTransfer\\FTP',
      'weight' => 0,
    ];
  }
  // SSH2 lib connection is only available if the proper PHP extension is
  // installed.
  if (function_exists('ssh2_connect')) {
    $backends['ssh'] = [
      'title' => t('SSH'),
      'class' => 'Drupal\\Core\\FileTransfer\\SSH',
      'weight' => 20,
    ];
  }
  return $backends;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.