Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / filetransfer_info_alter.twig
1 /**
2  * Implements hook_filetransfer_info_alter().
3  */
4 function {{ machine_name }}_filetransfer_info_alter(&$filetransfer_info) {
5   if (variable_get('paranoia', FALSE)) {
6     // Remove the FTP option entirely.
7     unset($filetransfer_info['ftp']);
8     // Make sure the SSH option is listed first.
9     $filetransfer_info['ssh']['weight'] = -10;
10   }
11 }